2000-02-04 11:39:30 -04:00
|
|
|
"""Generic (shallow and deep) copying operations.
|
1995-01-09 20:34:21 -04:00
|
|
|
|
1995-02-09 13:18:10 -04:00
|
|
|
Interface summary:
|
|
|
|
|
2001-01-14 19:36:06 -04:00
|
|
|
import copy
|
1995-02-09 13:18:10 -04:00
|
|
|
|
2024-07-03 12:03:56 -03:00
|
|
|
x = copy.copy(y) # make a shallow copy of y
|
|
|
|
x = copy.deepcopy(y) # make a deep copy of y
|
|
|
|
x = copy.replace(y, a=1, b=2) # new object with fields replaced, as defined by `__replace__`
|
1995-02-09 13:18:10 -04:00
|
|
|
|
2003-02-06 15:53:22 -04:00
|
|
|
For module specific errors, copy.Error is raised.
|
1995-02-09 13:18:10 -04:00
|
|
|
|
|
|
|
The difference between shallow and deep copying is only relevant for
|
|
|
|
compound objects (objects that contain other objects, like lists or
|
|
|
|
class instances).
|
|
|
|
|
|
|
|
- A shallow copy constructs a new compound object and then (to the
|
2005-06-12 22:10:15 -03:00
|
|
|
extent possible) inserts *the same objects* into it that the
|
1995-02-09 13:18:10 -04:00
|
|
|
original contains.
|
|
|
|
|
|
|
|
- A deep copy constructs a new compound object and then, recursively,
|
|
|
|
inserts *copies* into it of the objects found in the original.
|
|
|
|
|
|
|
|
Two problems often exist with deep copy operations that don't exist
|
|
|
|
with shallow copy operations:
|
|
|
|
|
1997-05-28 16:31:14 -03:00
|
|
|
a) recursive objects (compound objects that, directly or indirectly,
|
1995-02-09 13:18:10 -04:00
|
|
|
contain a reference to themselves) may cause a recursive loop
|
|
|
|
|
1997-05-28 16:31:14 -03:00
|
|
|
b) because deep copy copies *everything* it may copy too much, e.g.
|
1995-02-09 13:18:10 -04:00
|
|
|
administrative data structures that should be shared even between
|
|
|
|
copies
|
|
|
|
|
|
|
|
Python's deep copy operation avoids these problems by:
|
|
|
|
|
1997-05-28 16:31:14 -03:00
|
|
|
a) keeping a table of objects already copied during the current
|
|
|
|
copying pass
|
1995-02-09 13:18:10 -04:00
|
|
|
|
1997-05-28 16:31:14 -03:00
|
|
|
b) letting user-defined classes override the copying operation or the
|
1995-02-09 13:18:10 -04:00
|
|
|
set of components copied
|
|
|
|
|
|
|
|
This version does not copy types like module, class, function, method,
|
2021-11-14 08:56:01 -04:00
|
|
|
nor stack trace, stack frame, nor file, socket, window, nor any
|
|
|
|
similar types.
|
1995-02-09 13:18:10 -04:00
|
|
|
|
|
|
|
Classes can use the same interfaces to control copying that they use
|
|
|
|
to control pickling: they can define methods called __getinitargs__(),
|
1997-12-07 12:18:22 -04:00
|
|
|
__getstate__() and __setstate__(). See the documentation for module
|
1995-02-09 13:18:10 -04:00
|
|
|
"pickle" for information on these methods.
|
|
|
|
"""
|
1995-01-09 20:34:21 -04:00
|
|
|
|
|
|
|
import types
|
2009-05-15 14:04:50 -03:00
|
|
|
import weakref
|
2008-05-11 05:55:36 -03:00
|
|
|
from copyreg import dispatch_table
|
1995-01-09 20:34:21 -04:00
|
|
|
|
2000-08-17 02:06:49 -03:00
|
|
|
class Error(Exception):
|
2001-01-14 19:36:06 -04:00
|
|
|
pass
|
|
|
|
error = Error # backward compatibility
|
1995-01-09 20:34:21 -04:00
|
|
|
|
2024-07-03 12:03:56 -03:00
|
|
|
__all__ = ["Error", "copy", "deepcopy", "replace"]
|
2001-01-20 15:54:20 -04:00
|
|
|
|
1995-01-09 20:34:21 -04:00
|
|
|
def copy(x):
|
2001-01-14 19:36:06 -04:00
|
|
|
"""Shallow copy operation on arbitrary Python objects.
|
|
|
|
|
|
|
|
See the module's __doc__ string for more info.
|
|
|
|
"""
|
|
|
|
|
2003-02-07 13:30:18 -04:00
|
|
|
cls = type(x)
|
|
|
|
|
|
|
|
copier = _copy_dispatch.get(cls)
|
|
|
|
if copier:
|
|
|
|
return copier(x)
|
|
|
|
|
2018-07-09 17:14:54 -03:00
|
|
|
if issubclass(cls, type):
|
2013-12-01 17:25:26 -04:00
|
|
|
# treat it as a regular class:
|
|
|
|
return _copy_immutable(x)
|
|
|
|
|
2003-02-07 13:30:18 -04:00
|
|
|
copier = getattr(cls, "__copy__", None)
|
2018-07-09 17:14:54 -03:00
|
|
|
if copier is not None:
|
2003-02-07 13:30:18 -04:00
|
|
|
return copier(x)
|
|
|
|
|
|
|
|
reductor = dispatch_table.get(cls)
|
2018-07-09 17:14:54 -03:00
|
|
|
if reductor is not None:
|
2003-02-18 21:19:28 -04:00
|
|
|
rv = reductor(x)
|
|
|
|
else:
|
|
|
|
reductor = getattr(x, "__reduce_ex__", None)
|
2018-07-09 17:14:54 -03:00
|
|
|
if reductor is not None:
|
2015-03-24 13:06:42 -03:00
|
|
|
rv = reductor(4)
|
2003-02-18 21:19:28 -04:00
|
|
|
else:
|
|
|
|
reductor = getattr(x, "__reduce__", None)
|
|
|
|
if reductor:
|
|
|
|
rv = reductor()
|
|
|
|
else:
|
|
|
|
raise Error("un(shallow)copyable object of type %s" % cls)
|
|
|
|
|
2016-03-06 08:56:57 -04:00
|
|
|
if isinstance(rv, str):
|
|
|
|
return x
|
|
|
|
return _reconstruct(x, None, *rv)
|
2003-02-18 22:35:07 -04:00
|
|
|
|
2003-02-06 15:53:22 -04:00
|
|
|
|
1995-01-09 20:34:21 -04:00
|
|
|
_copy_dispatch = d = {}
|
|
|
|
|
2004-03-08 01:59:33 -04:00
|
|
|
def _copy_immutable(x):
|
2001-01-14 19:36:06 -04:00
|
|
|
return x
|
2023-01-07 17:29:53 -04:00
|
|
|
for t in (types.NoneType, int, float, bool, complex, str, tuple,
|
2020-01-12 13:41:49 -04:00
|
|
|
bytes, frozenset, type, range, slice, property,
|
2023-01-07 17:29:53 -04:00
|
|
|
types.BuiltinFunctionType, types.EllipsisType,
|
|
|
|
types.NotImplementedType, types.FunctionType, types.CodeType,
|
|
|
|
weakref.ref):
|
2007-06-07 20:15:56 -03:00
|
|
|
d[t] = _copy_immutable
|
2016-03-06 08:56:57 -04:00
|
|
|
|
|
|
|
d[list] = list.copy
|
|
|
|
d[dict] = dict.copy
|
|
|
|
d[set] = set.copy
|
|
|
|
d[bytearray] = bytearray.copy
|
|
|
|
|
|
|
|
del d, t
|
1995-01-09 20:34:21 -04:00
|
|
|
|
2003-02-07 13:30:18 -04:00
|
|
|
def deepcopy(x, memo=None, _nil=[]):
|
2001-01-14 19:36:06 -04:00
|
|
|
"""Deep copy operation on arbitrary Python objects.
|
|
|
|
|
|
|
|
See the module's __doc__ string for more info.
|
|
|
|
"""
|
|
|
|
|
2024-06-07 12:42:01 -03:00
|
|
|
cls = type(x)
|
|
|
|
|
|
|
|
if cls in _atomic_types:
|
|
|
|
return x
|
|
|
|
|
2023-09-29 04:28:01 -03:00
|
|
|
d = id(x)
|
2001-01-14 19:36:06 -04:00
|
|
|
if memo is None:
|
|
|
|
memo = {}
|
2023-09-29 04:28:01 -03:00
|
|
|
else:
|
|
|
|
y = memo.get(d, _nil)
|
|
|
|
if y is not _nil:
|
|
|
|
return y
|
2003-02-07 13:30:18 -04:00
|
|
|
|
|
|
|
copier = _deepcopy_dispatch.get(cls)
|
2018-07-09 17:14:54 -03:00
|
|
|
if copier is not None:
|
2003-02-07 13:30:18 -04:00
|
|
|
y = copier(x, memo)
|
|
|
|
else:
|
2018-07-09 17:14:54 -03:00
|
|
|
if issubclass(cls, type):
|
2024-06-07 12:42:01 -03:00
|
|
|
y = x # atomic copy
|
2003-02-07 13:30:18 -04:00
|
|
|
else:
|
2003-02-18 21:19:28 -04:00
|
|
|
copier = getattr(x, "__deepcopy__", None)
|
2018-07-09 17:14:54 -03:00
|
|
|
if copier is not None:
|
2003-02-18 21:19:28 -04:00
|
|
|
y = copier(memo)
|
|
|
|
else:
|
|
|
|
reductor = dispatch_table.get(cls)
|
|
|
|
if reductor:
|
|
|
|
rv = reductor(x)
|
|
|
|
else:
|
|
|
|
reductor = getattr(x, "__reduce_ex__", None)
|
2018-07-09 17:14:54 -03:00
|
|
|
if reductor is not None:
|
2015-03-24 13:06:42 -03:00
|
|
|
rv = reductor(4)
|
2003-02-18 21:19:28 -04:00
|
|
|
else:
|
|
|
|
reductor = getattr(x, "__reduce__", None)
|
|
|
|
if reductor:
|
|
|
|
rv = reductor()
|
|
|
|
else:
|
|
|
|
raise Error(
|
|
|
|
"un(deep)copyable object of type %s" % cls)
|
2016-03-06 08:56:57 -04:00
|
|
|
if isinstance(rv, str):
|
|
|
|
y = x
|
|
|
|
else:
|
|
|
|
y = _reconstruct(x, memo, *rv)
|
2003-02-07 13:30:18 -04:00
|
|
|
|
2011-06-27 18:22:46 -03:00
|
|
|
# If is its own copy, don't memoize.
|
|
|
|
if y is not x:
|
|
|
|
memo[d] = y
|
|
|
|
_keep_alive(x, memo) # Make sure x lives at least as long as d
|
2001-01-14 19:36:06 -04:00
|
|
|
return y
|
1995-01-09 20:34:21 -04:00
|
|
|
|
2024-06-07 12:42:01 -03:00
|
|
|
_atomic_types = {types.NoneType, types.EllipsisType, types.NotImplementedType,
|
|
|
|
int, float, bool, complex, bytes, str, types.CodeType, type, range,
|
|
|
|
types.BuiltinFunctionType, types.FunctionType, weakref.ref, property}
|
|
|
|
|
1995-01-09 20:34:21 -04:00
|
|
|
_deepcopy_dispatch = d = {}
|
|
|
|
|
|
|
|
|
2016-03-06 08:56:57 -04:00
|
|
|
def _deepcopy_list(x, memo, deepcopy=deepcopy):
|
2001-01-14 19:36:06 -04:00
|
|
|
y = []
|
|
|
|
memo[id(x)] = y
|
2016-03-06 08:56:57 -04:00
|
|
|
append = y.append
|
2001-01-14 19:36:06 -04:00
|
|
|
for a in x:
|
2016-03-06 08:56:57 -04:00
|
|
|
append(deepcopy(a, memo))
|
2001-01-14 19:36:06 -04:00
|
|
|
return y
|
2005-02-07 10:16:21 -04:00
|
|
|
d[list] = _deepcopy_list
|
1995-01-09 20:34:21 -04:00
|
|
|
|
2016-03-06 08:56:57 -04:00
|
|
|
def _deepcopy_tuple(x, memo, deepcopy=deepcopy):
|
2014-05-03 21:22:00 -03:00
|
|
|
y = [deepcopy(a, memo) for a in x]
|
2011-06-27 18:22:46 -03:00
|
|
|
# We're not going to put the tuple in the memo, but it's still important we
|
|
|
|
# check for it, in case the tuple contains recursive mutable structures.
|
2001-01-14 19:36:06 -04:00
|
|
|
try:
|
2011-06-27 18:22:46 -03:00
|
|
|
return memo[id(x)]
|
2001-01-14 19:36:06 -04:00
|
|
|
except KeyError:
|
|
|
|
pass
|
2014-05-03 21:22:00 -03:00
|
|
|
for k, j in zip(x, y):
|
|
|
|
if k is not j:
|
2001-01-14 19:36:06 -04:00
|
|
|
y = tuple(y)
|
|
|
|
break
|
|
|
|
else:
|
|
|
|
y = x
|
|
|
|
return y
|
2005-02-07 10:16:21 -04:00
|
|
|
d[tuple] = _deepcopy_tuple
|
1995-01-09 20:34:21 -04:00
|
|
|
|
2016-03-06 08:56:57 -04:00
|
|
|
def _deepcopy_dict(x, memo, deepcopy=deepcopy):
|
2001-01-14 19:36:06 -04:00
|
|
|
y = {}
|
|
|
|
memo[id(x)] = y
|
2007-02-11 02:12:03 -04:00
|
|
|
for key, value in x.items():
|
2002-06-02 15:55:56 -03:00
|
|
|
y[deepcopy(key, memo)] = deepcopy(value, memo)
|
2001-01-14 19:36:06 -04:00
|
|
|
return y
|
2005-02-07 10:16:21 -04:00
|
|
|
d[dict] = _deepcopy_dict
|
1995-01-09 20:34:21 -04:00
|
|
|
|
2009-11-28 11:58:27 -04:00
|
|
|
def _deepcopy_method(x, memo): # Copy instance methods
|
|
|
|
return type(x)(x.__func__, deepcopy(x.__self__, memo))
|
2016-03-06 08:56:57 -04:00
|
|
|
d[types.MethodType] = _deepcopy_method
|
|
|
|
|
|
|
|
del d
|
2009-11-28 11:58:27 -04:00
|
|
|
|
1997-08-20 19:26:19 -03:00
|
|
|
def _keep_alive(x, memo):
|
2001-01-14 19:36:06 -04:00
|
|
|
"""Keeps a reference to the object x in the memo.
|
|
|
|
|
|
|
|
Because we remember objects by their id, we have
|
|
|
|
to assure that possibly temporary objects are kept
|
|
|
|
alive by referencing them.
|
|
|
|
We store a reference at the id of the memo, which should
|
|
|
|
normally not be used unless someone tries to deepcopy
|
|
|
|
the memo itself...
|
|
|
|
"""
|
|
|
|
try:
|
|
|
|
memo[id(memo)].append(x)
|
|
|
|
except KeyError:
|
|
|
|
# aha, this is the first one :-)
|
|
|
|
memo[id(memo)]=[x]
|
1997-08-20 19:26:19 -03:00
|
|
|
|
2016-03-06 08:56:57 -04:00
|
|
|
def _reconstruct(x, memo, func, args,
|
|
|
|
state=None, listiter=None, dictiter=None,
|
2022-06-09 04:12:43 -03:00
|
|
|
*, deepcopy=deepcopy):
|
2016-03-06 08:56:57 -04:00
|
|
|
deep = memo is not None
|
|
|
|
if deep and args:
|
|
|
|
args = (deepcopy(arg, memo) for arg in args)
|
|
|
|
y = func(*args)
|
2001-09-28 15:13:29 -03:00
|
|
|
if deep:
|
2016-03-06 08:56:57 -04:00
|
|
|
memo[id(x)] = y
|
2010-09-04 14:40:21 -03:00
|
|
|
|
2015-11-30 11:20:02 -04:00
|
|
|
if state is not None:
|
2001-09-28 15:13:29 -03:00
|
|
|
if deep:
|
2001-12-28 17:33:22 -04:00
|
|
|
state = deepcopy(state, memo)
|
2002-06-06 14:41:20 -03:00
|
|
|
if hasattr(y, '__setstate__'):
|
|
|
|
y.__setstate__(state)
|
|
|
|
else:
|
2003-02-06 15:53:22 -04:00
|
|
|
if isinstance(state, tuple) and len(state) == 2:
|
|
|
|
state, slotstate = state
|
|
|
|
else:
|
|
|
|
slotstate = None
|
|
|
|
if state is not None:
|
|
|
|
y.__dict__.update(state)
|
|
|
|
if slotstate is not None:
|
2007-02-11 02:12:03 -04:00
|
|
|
for key, value in slotstate.items():
|
2003-02-06 15:53:22 -04:00
|
|
|
setattr(y, key, value)
|
2010-09-04 14:40:21 -03:00
|
|
|
|
|
|
|
if listiter is not None:
|
2016-03-06 08:56:57 -04:00
|
|
|
if deep:
|
|
|
|
for item in listiter:
|
2010-09-04 14:40:21 -03:00
|
|
|
item = deepcopy(item, memo)
|
2016-03-06 08:56:57 -04:00
|
|
|
y.append(item)
|
|
|
|
else:
|
|
|
|
for item in listiter:
|
|
|
|
y.append(item)
|
2010-09-04 14:40:21 -03:00
|
|
|
if dictiter is not None:
|
2016-03-06 08:56:57 -04:00
|
|
|
if deep:
|
|
|
|
for key, value in dictiter:
|
2010-09-04 14:40:21 -03:00
|
|
|
key = deepcopy(key, memo)
|
|
|
|
value = deepcopy(value, memo)
|
2016-03-06 08:56:57 -04:00
|
|
|
y[key] = value
|
|
|
|
else:
|
|
|
|
for key, value in dictiter:
|
|
|
|
y[key] = value
|
2001-09-28 15:13:29 -03:00
|
|
|
return y
|
|
|
|
|
2022-12-23 16:17:24 -04:00
|
|
|
del types, weakref
|
2023-09-06 17:55:42 -03:00
|
|
|
|
|
|
|
|
|
|
|
def replace(obj, /, **changes):
|
|
|
|
"""Return a new object replacing specified fields with new values.
|
|
|
|
|
|
|
|
This is especially useful for immutable objects, like named tuples or
|
|
|
|
frozen dataclasses.
|
|
|
|
"""
|
|
|
|
cls = obj.__class__
|
|
|
|
func = getattr(cls, '__replace__', None)
|
|
|
|
if func is None:
|
|
|
|
raise TypeError(f"replace() does not support {cls.__name__} objects")
|
|
|
|
return func(obj, **changes)
|