diff options
author | William Blevins <wblevins@gmail.com> | 2015-06-29 11:04:53 (GMT) |
---|---|---|
committer | William Blevins <wblevins@gmail.com> | 2015-06-29 11:04:53 (GMT) |
commit | 3be61c5b90e24835f7cd86e07d230e99edf0ca31 (patch) | |
tree | 85cd07e3b956a0d076a3bf479b566b2dd356550f | |
parent | 4158d77b02c879ffd8ea7f82a5c2b3b8d69cf630 (diff) | |
download | SCons-3be61c5b90e24835f7cd86e07d230e99edf0ca31.zip SCons-3be61c5b90e24835f7cd86e07d230e99edf0ca31.tar.gz SCons-3be61c5b90e24835f7cd86e07d230e99edf0ca31.tar.bz2 |
Issue 3004: Updated Environment.Dump pydoc.
-rw-r--r-- | src/engine/SCons/Environment.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/engine/SCons/Environment.py b/src/engine/SCons/Environment.py index 6886e85..973c109 100644 --- a/src/engine/SCons/Environment.py +++ b/src/engine/SCons/Environment.py @@ -1528,8 +1528,8 @@ class Base(SubstitutionEnvironment): def Dump(self, key = None): """ - Using the standard Python pretty printer, dump the contents of the - scons build environment to stdout. + Using the standard Python pretty printer, return the contents of the + scons build environment as a string. If the key passed in is anything other than None, then that will be used as an index into the build environment dictionary and |