mirror of
https://github.com/python/cpython.git
synced 2025-10-12 09:53:19 +00:00
Use __reduce_ex__ in copy.py. The test_*copy_cant() tests are simpler again.
This commit is contained in:
parent
a43fd0c899
commit
e690883ccf
3 changed files with 65 additions and 32 deletions
46
Lib/copy.py
46
Lib/copy.py
|
@ -79,14 +79,20 @@ def copy(x):
|
||||||
return copier(x)
|
return copier(x)
|
||||||
|
|
||||||
reductor = dispatch_table.get(cls)
|
reductor = dispatch_table.get(cls)
|
||||||
if not reductor:
|
if reductor:
|
||||||
reductor = getattr(cls, "__reduce__", None)
|
rv = reductor(x)
|
||||||
if reductor == object.__reduce__:
|
else:
|
||||||
reductor = _better_reduce
|
reductor = getattr(x, "__reduce_ex__", None)
|
||||||
elif not reductor:
|
if reductor:
|
||||||
|
rv = reductor(2)
|
||||||
|
else:
|
||||||
|
reductor = getattr(x, "__reduce__", None)
|
||||||
|
if reductor:
|
||||||
|
rv = reductor()
|
||||||
|
else:
|
||||||
raise Error("un(shallow)copyable object of type %s" % cls)
|
raise Error("un(shallow)copyable object of type %s" % cls)
|
||||||
|
|
||||||
return _reconstruct(x, reductor(x), 0)
|
return _reconstruct(x, rv, 0)
|
||||||
|
|
||||||
|
|
||||||
_copy_dispatch = d = {}
|
_copy_dispatch = d = {}
|
||||||
|
@ -176,21 +182,27 @@ def deepcopy(x, memo=None, _nil=[]):
|
||||||
except TypeError: # cls is not a class (old Boost; see SF #502085)
|
except TypeError: # cls is not a class (old Boost; see SF #502085)
|
||||||
issc = 0
|
issc = 0
|
||||||
if issc:
|
if issc:
|
||||||
copier = _deepcopy_atomic
|
y = _deepcopy_atomic(x, memo)
|
||||||
else:
|
else:
|
||||||
copier = getattr(cls, "__deepcopy__", None)
|
copier = getattr(x, "__deepcopy__", None)
|
||||||
|
|
||||||
if copier:
|
if copier:
|
||||||
y = copier(x, memo)
|
y = copier(memo)
|
||||||
else:
|
else:
|
||||||
reductor = dispatch_table.get(cls)
|
reductor = dispatch_table.get(cls)
|
||||||
if not reductor:
|
if reductor:
|
||||||
reductor = getattr(cls, "__reduce__", None)
|
rv = reductor(x)
|
||||||
if reductor == object.__reduce__:
|
else:
|
||||||
reductor = _better_reduce
|
reductor = getattr(x, "__reduce_ex__", None)
|
||||||
elif not reductor:
|
if reductor:
|
||||||
raise Error("un(deep)copyable object of type %s" % cls)
|
rv = reductor(2)
|
||||||
y = _reconstruct(x, reductor(x), 1, memo)
|
else:
|
||||||
|
reductor = getattr(x, "__reduce__", None)
|
||||||
|
if reductor:
|
||||||
|
rv = reductor()
|
||||||
|
else:
|
||||||
|
raise Error(
|
||||||
|
"un(deep)copyable object of type %s" % cls)
|
||||||
|
y = _reconstruct(x, rv, 1, memo)
|
||||||
|
|
||||||
memo[d] = y
|
memo[d] = y
|
||||||
_keep_alive(x, memo) # Make sure x lives at least as long as d
|
_keep_alive(x, memo) # Make sure x lives at least as long as d
|
||||||
|
|
|
@ -113,9 +113,14 @@ def _better_reduce(obj):
|
||||||
|
|
||||||
def _reduce_ex(obj, proto=0):
|
def _reduce_ex(obj, proto=0):
|
||||||
obj_reduce = getattr(obj, "__reduce__", None)
|
obj_reduce = getattr(obj, "__reduce__", None)
|
||||||
if obj_reduce and obj.__class__.__reduce__ is not object.__reduce__:
|
# XXX This fails in test_copy.py line 61
|
||||||
|
if obj_reduce:
|
||||||
|
try:
|
||||||
|
if obj.__class__.__reduce__ is not object.__reduce__:
|
||||||
return obj_reduce()
|
return obj_reduce()
|
||||||
elif proto < 2:
|
except AttributeError:
|
||||||
|
pass
|
||||||
|
if proto < 2:
|
||||||
return _reduce(obj)
|
return _reduce(obj)
|
||||||
else:
|
else:
|
||||||
return _better_reduce(obj)
|
return _better_reduce(obj)
|
||||||
|
|
|
@ -46,6 +46,16 @@ class TestCopy(unittest.TestCase):
|
||||||
copy_reg.pickle(C, pickle_C, C)
|
copy_reg.pickle(C, pickle_C, C)
|
||||||
y = copy.copy(x)
|
y = copy.copy(x)
|
||||||
|
|
||||||
|
def test_copy_reduce_ex(self):
|
||||||
|
class C(object):
|
||||||
|
def __reduce_ex__(self, proto):
|
||||||
|
return ""
|
||||||
|
def __reduce__(self):
|
||||||
|
raise test_support.TestFailed, "shouldn't call this"
|
||||||
|
x = C()
|
||||||
|
y = copy.copy(x)
|
||||||
|
self.assert_(y is x)
|
||||||
|
|
||||||
def test_copy_reduce(self):
|
def test_copy_reduce(self):
|
||||||
class C(object):
|
class C(object):
|
||||||
def __reduce__(self):
|
def __reduce__(self):
|
||||||
|
@ -55,13 +65,11 @@ class TestCopy(unittest.TestCase):
|
||||||
self.assert_(y is x)
|
self.assert_(y is x)
|
||||||
|
|
||||||
def test_copy_cant(self):
|
def test_copy_cant(self):
|
||||||
class Meta(type):
|
class C(object):
|
||||||
def __getattribute__(self, name):
|
def __getattribute__(self, name):
|
||||||
if name == "__reduce__":
|
if name.startswith("__reduce"):
|
||||||
raise AttributeError, name
|
raise AttributeError, name
|
||||||
return object.__getattribute__(self, name)
|
return object.__getattribute__(self, name)
|
||||||
class C:
|
|
||||||
__metaclass__ = Meta
|
|
||||||
x = C()
|
x = C()
|
||||||
self.assertRaises(copy.Error, copy.copy, x)
|
self.assertRaises(copy.Error, copy.copy, x)
|
||||||
|
|
||||||
|
@ -209,6 +217,16 @@ class TestCopy(unittest.TestCase):
|
||||||
copy_reg.pickle(C, pickle_C, C)
|
copy_reg.pickle(C, pickle_C, C)
|
||||||
y = copy.deepcopy(x)
|
y = copy.deepcopy(x)
|
||||||
|
|
||||||
|
def test_deepcopy_reduce_ex(self):
|
||||||
|
class C(object):
|
||||||
|
def __reduce_ex__(self, proto):
|
||||||
|
return ""
|
||||||
|
def __reduce__(self):
|
||||||
|
raise test_support.TestFailed, "shouldn't call this"
|
||||||
|
x = C()
|
||||||
|
y = copy.deepcopy(x)
|
||||||
|
self.assert_(y is x)
|
||||||
|
|
||||||
def test_deepcopy_reduce(self):
|
def test_deepcopy_reduce(self):
|
||||||
class C(object):
|
class C(object):
|
||||||
def __reduce__(self):
|
def __reduce__(self):
|
||||||
|
@ -218,13 +236,11 @@ class TestCopy(unittest.TestCase):
|
||||||
self.assert_(y is x)
|
self.assert_(y is x)
|
||||||
|
|
||||||
def test_deepcopy_cant(self):
|
def test_deepcopy_cant(self):
|
||||||
class Meta(type):
|
class C(object):
|
||||||
def __getattribute__(self, name):
|
def __getattribute__(self, name):
|
||||||
if name == "__reduce__":
|
if name.startswith("__reduce"):
|
||||||
raise AttributeError, name
|
raise AttributeError, name
|
||||||
return object.__getattribute__(self, name)
|
return object.__getattribute__(self, name)
|
||||||
class C:
|
|
||||||
__metaclass__ = Meta
|
|
||||||
x = C()
|
x = C()
|
||||||
self.assertRaises(copy.Error, copy.deepcopy, x)
|
self.assertRaises(copy.Error, copy.deepcopy, x)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue