summaryrefslogtreecommitdiffstats
path: root/src/engine/SCons/Action.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine/SCons/Action.py')
-rw-r--r--src/engine/SCons/Action.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/engine/SCons/Action.py b/src/engine/SCons/Action.py
index e110d60..c131693 100644
--- a/src/engine/SCons/Action.py
+++ b/src/engine/SCons/Action.py
@@ -37,6 +37,11 @@ other modules:
to compare the actions used to build a target last time and
this time.
+ strfunction()
+ Returns a substituted string representation of the Action.
+ This is used by the ActionBase.show() command to display the
+ command/function that will be executed to generate the target(s).
+
Subclasses also supply the following methods for internal use within
this module:
@@ -46,11 +51,6 @@ this module:
the pre-substitution command whenever the --debug=presub option
is used.
- strfunction()
- Returns a substituted string representation of the Action.
- This is used by the ActionBase.show() command to display the
- command/function that will be executed to generate the target(s).
-
execute()
The internal method that really, truly, actually handles the
execution of a command or Python function. This is used so