summaryrefslogtreecommitdiff
path: root/src/script
diff options
context:
space:
mode:
authorDirk Baechle <dl9obn@darc.de>2015-02-27 00:44:19 +0100
committerDirk Baechle <dl9obn@darc.de>2015-02-27 00:44:19 +0100
commitb2230ada31c8a64f44cf2afb15d80374307fc13a (patch)
treee4e8f3ef044c39a930235a39bb7301d35b0300ff /src/script
parent4ce07298d57859d28bbef0cf5f07c10725bb51e5 (diff)
downloadscons-b2230ada31c8a64f44cf2afb15d80374307fc13a.tar.gz
- switching Node class and NodeInfo/Binfo to using slots
- memoizer subsystem now uses decorators instead of the metaclass approach
Diffstat (limited to 'src/script')
-rw-r--r--src/script/sconsign.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/script/sconsign.py b/src/script/sconsign.py
index e5e9d4f9..ef32a939 100644
--- a/src/script/sconsign.py
+++ b/src/script/sconsign.py
@@ -278,7 +278,7 @@ def field(name, entry, verbose=Verbose):
def nodeinfo_raw(name, ninfo, prefix=""):
# This just formats the dictionary, which we would normally use str()
# to do, except that we want the keys sorted for deterministic output.
- d = ninfo.__dict__
+ d = ninfo.__getstate__()
try:
keys = ninfo.field_list + ['_version_id']
except AttributeError: