summaryrefslogtreecommitdiff
path: root/Lib/copy.py
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-11-30 17:35:40 +0200
committerSerhiy Storchaka <storchaka@gmail.com>2015-11-30 17:35:40 +0200
commitb63015b01a07c535ef4c26fe0bc4c336295dd08e (patch)
treefb928a9e06f9d272f98c5d16dc594332dc8e6621 /Lib/copy.py
parent3c49710e9fc383c521817cee3cb5d3695430b7ea (diff)
parentcbbec1c53f4b6fb88b4ae984e69db2d2951cd560 (diff)
downloadcpython-git-b63015b01a07c535ef4c26fe0bc4c336295dd08e.tar.gz
Issue #25718: Fixed copying object with state with boolean value is false.
Diffstat (limited to 'Lib/copy.py')
-rw-r--r--Lib/copy.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/copy.py b/Lib/copy.py
index 3a45fdf49b..493c487d8a 100644
--- a/Lib/copy.py
+++ b/Lib/copy.py
@@ -279,7 +279,7 @@ def _reconstruct(x, info, deep, memo=None):
if n > 2:
state = info[2]
else:
- state = {}
+ state = None
if n > 3:
listiter = info[3]
else:
@@ -293,7 +293,7 @@ def _reconstruct(x, info, deep, memo=None):
y = callable(*args)
memo[id(x)] = y
- if state:
+ if state is not None:
if deep:
state = deepcopy(state, memo)
if hasattr(y, '__setstate__'):