summaryrefslogtreecommitdiffstats
path: root/Lib/copy.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2003-02-06 21:25:12 (GMT)
committerGuido van Rossum <guido@python.org>2003-02-06 21:25:12 (GMT)
commit85233bf74679a5dae4365507526789883a3c1158 (patch)
treebf180d690fe03682e3c09b1132d4a3dca54ce874 /Lib/copy.py
parent694d9b354195ac3bf361b33601ed77e5b02e4fa7 (diff)
downloadcpython-85233bf74679a5dae4365507526789883a3c1158.zip
cpython-85233bf74679a5dae4365507526789883a3c1158.tar.gz
cpython-85233bf74679a5dae4365507526789883a3c1158.tar.bz2
Fix a bug in the way __getnewargs__ was handled.
Diffstat (limited to 'Lib/copy.py')
-rw-r--r--Lib/copy.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/copy.py b/Lib/copy.py
index 9f8386e..739cf2d 100644
--- a/Lib/copy.py
+++ b/Lib/copy.py
@@ -128,7 +128,7 @@ def _better_reduce(obj):
listitems = iter(obj)
elif isinstance(obj, dict):
dictitems = obj.iteritems()
- return __newobj__, (cls, args), state, listitems, dictitems
+ return __newobj__, (cls,) + args, state, listitems, dictitems
_copy_dispatch = d = {}