SCons :: Action :: ActionCaller :: Class ActionCaller
[hide private]
[frames] | no frames]

Class ActionCaller

source code

object --+
         |
        ActionCaller

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.



Instance Methods [hide private]
 
__init__(self, parent, args, kw)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
source code
 
get_contents(self, target, source, env) source code
 
subst(self, s, target, source, env) source code
 
subst_args(self, target, source, env) source code
 
subst_kw(self, target, source, env) source code
 
__call__(self, target, source, env, executor=False) source code
 
strfunction(self, target, source, env) source code
 
__str__(self)
str(x)
source code

Inherited from object: __delattr__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, parent, args, kw)
(Constructor)

source code 
x.__init__(...) initializes x; see x.__class__.__doc__ for signature

Overrides: object.__init__
(inherited documentation)

__str__(self)
(Informal representation operator)

source code 
str(x)

Overrides: object.__str__
(inherited documentation)