summaryrefslogtreecommitdiffstats
path: root/src/engine/SCons/Util.py
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2004-08-21 14:32:17 (GMT)
committerSteven Knight <knight@baldmt.com>2004-08-21 14:32:17 (GMT)
commit39c82b149712471733d113a8d315fb3e53775359 (patch)
tree282f7a0ad4c51425a52e890eb1dc1cd153458ad8 /src/engine/SCons/Util.py
parent91532186ce415a6fcdddc8c16c30fb9660fff201 (diff)
downloadSCons-39c82b149712471733d113a8d315fb3e53775359.zip
SCons-39c82b149712471733d113a8d315fb3e53775359.tar.gz
SCons-39c82b149712471733d113a8d315fb3e53775359.tar.bz2
Fix env.Copy() stack trace.
Diffstat (limited to 'src/engine/SCons/Util.py')
-rw-r--r--src/engine/SCons/Util.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/engine/SCons/Util.py b/src/engine/SCons/Util.py
index ea5d7f6..5636a90 100644
--- a/src/engine/SCons/Util.py
+++ b/src/engine/SCons/Util.py
@@ -231,9 +231,6 @@ class SpecialAttrWrapper:
class CallableComposite(UserList.UserList):
"""A simple composite callable class that, when called, will invoke all
of its contained callables with the same arguments."""
- def __init__(self, seq = []):
- UserList.UserList.__init__(self, seq)
-
def __call__(self, *args, **kwargs):
retvals = map(lambda x, args=args, kwargs=kwargs: apply(x,
args,
@@ -253,9 +250,6 @@ class NodeList(UserList.UserList):
>>> someList.strip()
[ 'foo', 'bar' ]
"""
- def __init__(self, seq = []):
- UserList.UserList.__init__(self, seq)
-
def __nonzero__(self):
return len(self.data) != 0