summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorWilliam Deegan <bill@baddogconsulting.com>2017-02-26 04:50:56 (GMT)
committerWilliam Deegan <bill@baddogconsulting.com>2017-02-26 04:50:56 (GMT)
commitac2848f315fd4cdfb37098355795aa5ada10c45e (patch)
tree664d29e014d1f2f5a1fc6f5ecb6bddc893ff45cb /src
parent67e2e4f4f9b93bc2187f48bc0fecb6129d7aa286 (diff)
downloadSCons-ac2848f315fd4cdfb37098355795aa5ada10c45e.zip
SCons-ac2848f315fd4cdfb37098355795aa5ada10c45e.tar.gz
SCons-ac2848f315fd4cdfb37098355795aa5ada10c45e.tar.bz2
Move comment to docstring
Diffstat (limited to 'src')
-rw-r--r--src/engine/SCons/dblite.py20
1 files changed, 11 insertions, 9 deletions
diff --git a/src/engine/SCons/dblite.py b/src/engine/SCons/dblite.py
index 19a8693..e11fe77 100644
--- a/src/engine/SCons/dblite.py
+++ b/src/engine/SCons/dblite.py
@@ -44,15 +44,17 @@ tmp_suffix = '.tmp'
class dblite(object):
- # Squirrel away references to the functions in various modules
- # that we'll use when our __del__() method calls our sync() method
- # during shutdown. We might get destroyed when Python is in the midst
- # of tearing down the different modules we import in an essentially
- # arbitrary order, and some of the various modules's global attributes
- # may already be wiped out from under us.
- #
- # See the discussion at:
- # http://mail.python.org/pipermail/python-bugs-list/2003-March/016877.html
+ """
+ Squirrel away references to the functions in various modules
+ that we'll use when our __del__() method calls our sync() method
+ during shutdown. We might get destroyed when Python is in the midst
+ of tearing down the different modules we import in an essentially
+ arbitrary order, and some of the various modules's global attributes
+ may already be wiped out from under us.
+
+ See the discussion at:
+ http://mail.python.org/pipermail/python-bugs-list/2003-March/016877.html
+ """
_open = open
_pickle_dump = staticmethod(pickle.dump)