Home | History | Annotate | Download | only in python2.7

Lines Matching full:deep

1 """Generic (shallow and deep) copying operations.
8 x = copy.deepcopy(y) # make a deep copy of y
12 The difference between shallow and deep copying is only relevant for
20 - A deep copy constructs a new compound object and then, recursively,
23 Two problems often exist with deep copy operations that don't exist
29 b) because deep copy copies *everything* it may copy too much, e.g.
33 Python's deep copy operation avoids these problems by:
146 """Deep copy operation on arbitrary Python objects.
189 "un(deep)copyable object of type %s" % cls)
306 def _reconstruct(x, info, deep, memo=None):
327 if deep:
333 if deep:
350 if deep:
355 if deep: