A class for delaying calling an Action function with specific
(positional and keyword) arguments until the Action is actually
executed.
This class looks to the rest of the world like a normal Action object,
but what it's really doing is hanging on to the arguments until we
have a target, source and env to use for the expansion.
| Method Summary |
| |
__init__(self,
parent,
args,
kw)
|
| |
__call__(self,
target,
source,
env)
|
| |
__str__(self)
|
| |
get_contents(self,
target,
source,
env)
|
| |
strfunction(self,
target,
source,
env)
|
| |
subst(self,
s,
target,
source,
env)
|
| |
subst_args(self,
target,
source,
env)
|
| |
subst_kw(self,
target,
source,
env)
|