| 
									
										
										
										
											2000-02-04 15:39:30 +00:00
										 |  |  | """Generic (shallow and deep) copying operations.
 | 
					
						
							| 
									
										
										
										
											1995-01-10 00:34:21 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-02-09 17:18:10 +00:00
										 |  |  | Interface summary: | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-01-14 23:36:06 +00:00
										 |  |  |         import copy | 
					
						
							| 
									
										
										
										
											1995-02-09 17:18:10 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-01-14 23:36:06 +00:00
										 |  |  |         x = copy.copy(y)        # make a shallow copy of y | 
					
						
							|  |  |  |         x = copy.deepcopy(y)    # make a deep copy of y | 
					
						
							| 
									
										
										
										
											1995-02-09 17:18:10 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-03-14 17:41:36 +00:00
										 |  |  | For module specific errors, copy.error is raised. | 
					
						
							| 
									
										
										
										
											1995-02-09 17:18:10 +00: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 | 
					
						
							|  |  |  |   extent possible) inserts *the same objects* into in that the | 
					
						
							|  |  |  |   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 19:31:14 +00:00
										 |  |  |  a) recursive objects (compound objects that, directly or indirectly, | 
					
						
							| 
									
										
										
										
											1995-02-09 17:18:10 +00:00
										 |  |  |     contain a reference to themselves) may cause a recursive loop | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-05-28 19:31:14 +00:00
										 |  |  |  b) because deep copy copies *everything* it may copy too much, e.g. | 
					
						
							| 
									
										
										
										
											1995-02-09 17:18:10 +00:00
										 |  |  |     administrative data structures that should be shared even between | 
					
						
							|  |  |  |     copies | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Python's deep copy operation avoids these problems by: | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-05-28 19:31:14 +00:00
										 |  |  |  a) keeping a table of objects already copied during the current | 
					
						
							|  |  |  |     copying pass | 
					
						
							| 
									
										
										
										
											1995-02-09 17:18:10 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-05-28 19:31:14 +00:00
										 |  |  |  b) letting user-defined classes override the copying operation or the | 
					
						
							| 
									
										
										
										
											1995-02-09 17:18:10 +00:00
										 |  |  |     set of components copied | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | This version does not copy types like module, class, function, method, | 
					
						
							|  |  |  | nor stack trace, stack frame, nor file, socket, window, nor array, nor | 
					
						
							|  |  |  | any similar types. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Classes can use the same interfaces to control copying that they use | 
					
						
							|  |  |  | to control pickling: they can define methods called __getinitargs__(), | 
					
						
							| 
									
										
										
										
											1997-12-07 16:18:22 +00:00
										 |  |  | __getstate__() and __setstate__().  See the documentation for module | 
					
						
							| 
									
										
										
										
											1995-02-09 17:18:10 +00:00
										 |  |  | "pickle" for information on these methods. | 
					
						
							|  |  |  | """
 | 
					
						
							| 
									
										
										
										
											1995-01-10 00:34:21 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-10-07 14:47:50 +00:00
										 |  |  | # XXX need to support copy_reg here too... | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-01-10 00:34:21 +00:00
										 |  |  | import types | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-08-17 05:06:49 +00:00
										 |  |  | class Error(Exception): | 
					
						
							| 
									
										
										
										
											2001-01-14 23:36:06 +00:00
										 |  |  |     pass | 
					
						
							|  |  |  | error = Error   # backward compatibility | 
					
						
							| 
									
										
										
										
											1995-01-10 00:34:21 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-11-27 21:53:14 +00:00
										 |  |  | try: | 
					
						
							|  |  |  |     from org.python.core import PyStringMap | 
					
						
							|  |  |  | except ImportError: | 
					
						
							|  |  |  |     PyStringMap = None | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-09-28 18:13:29 +00:00
										 |  |  | __all__ = ["Error", "error", "copy", "deepcopy"] | 
					
						
							| 
									
										
										
										
											2001-01-20 19:54:20 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-01-10 00:34:21 +00:00
										 |  |  | def copy(x): | 
					
						
							| 
									
										
										
										
											2001-01-14 23:36:06 +00:00
										 |  |  |     """Shallow copy operation on arbitrary Python objects.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     See the module's __doc__ string for more info. | 
					
						
							|  |  |  |     """
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     try: | 
					
						
							|  |  |  |         copierfunction = _copy_dispatch[type(x)] | 
					
						
							|  |  |  |     except KeyError: | 
					
						
							|  |  |  |         try: | 
					
						
							|  |  |  |             copier = x.__copy__ | 
					
						
							|  |  |  |         except AttributeError: | 
					
						
							| 
									
										
										
										
											2001-09-28 18:13:29 +00:00
										 |  |  |             try: | 
					
						
							|  |  |  |                 reductor = x.__reduce__ | 
					
						
							|  |  |  |             except AttributeError: | 
					
						
							|  |  |  |                 raise error, \ | 
					
						
							|  |  |  |                       "un(shallow)copyable object of type %s" % type(x) | 
					
						
							|  |  |  |             else: | 
					
						
							|  |  |  |                 y = _reconstruct(x, reductor(), 0) | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             y = copier() | 
					
						
							| 
									
										
										
										
											2001-01-14 23:36:06 +00:00
										 |  |  |     else: | 
					
						
							|  |  |  |         y = copierfunction(x) | 
					
						
							|  |  |  |     return y | 
					
						
							| 
									
										
										
										
											1995-01-10 00:34:21 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | _copy_dispatch = d = {} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def _copy_atomic(x): | 
					
						
							| 
									
										
										
										
											2001-01-14 23:36:06 +00:00
										 |  |  |     return x | 
					
						
							| 
									
										
										
										
											1995-01-10 00:34:21 +00:00
										 |  |  | d[types.NoneType] = _copy_atomic | 
					
						
							|  |  |  | d[types.IntType] = _copy_atomic | 
					
						
							|  |  |  | d[types.LongType] = _copy_atomic | 
					
						
							|  |  |  | d[types.FloatType] = _copy_atomic | 
					
						
							| 
									
										
										
										
											2001-09-28 18:16:13 +00:00
										 |  |  | try: | 
					
						
							|  |  |  |     d[types.ComplexType] = _copy_atomic | 
					
						
							|  |  |  | except AttributeError: | 
					
						
							|  |  |  |     pass | 
					
						
							| 
									
										
										
										
											1995-01-10 00:34:21 +00:00
										 |  |  | d[types.StringType] = _copy_atomic | 
					
						
							| 
									
										
										
										
											2001-08-17 18:39:25 +00:00
										 |  |  | try: | 
					
						
							|  |  |  |     d[types.UnicodeType] = _copy_atomic | 
					
						
							|  |  |  | except AttributeError: | 
					
						
							|  |  |  |     pass | 
					
						
							| 
									
										
										
										
											1999-01-25 21:37:02 +00:00
										 |  |  | try: | 
					
						
							| 
									
										
										
										
											2001-01-14 23:36:06 +00:00
										 |  |  |     d[types.CodeType] = _copy_atomic | 
					
						
							| 
									
										
										
										
											1999-01-25 21:37:02 +00:00
										 |  |  | except AttributeError: | 
					
						
							| 
									
										
										
										
											2001-01-14 23:36:06 +00:00
										 |  |  |     pass | 
					
						
							| 
									
										
										
										
											1995-01-10 00:34:21 +00:00
										 |  |  | d[types.TypeType] = _copy_atomic | 
					
						
							|  |  |  | d[types.XRangeType] = _copy_atomic | 
					
						
							| 
									
										
										
										
											1995-03-14 17:41:36 +00:00
										 |  |  | d[types.ClassType] = _copy_atomic | 
					
						
							| 
									
										
										
										
											1995-01-10 00:34:21 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | def _copy_list(x): | 
					
						
							| 
									
										
										
										
											2001-01-14 23:36:06 +00:00
										 |  |  |     return x[:] | 
					
						
							| 
									
										
										
										
											1995-01-10 00:34:21 +00:00
										 |  |  | d[types.ListType] = _copy_list | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def _copy_tuple(x): | 
					
						
							| 
									
										
										
										
											2001-01-14 23:36:06 +00:00
										 |  |  |     return x[:] | 
					
						
							| 
									
										
										
										
											1995-01-10 00:34:21 +00:00
										 |  |  | d[types.TupleType] = _copy_tuple | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def _copy_dict(x): | 
					
						
							| 
									
										
										
										
											2001-01-14 23:36:06 +00:00
										 |  |  |     return x.copy() | 
					
						
							| 
									
										
										
										
											1995-01-10 00:34:21 +00:00
										 |  |  | d[types.DictionaryType] = _copy_dict | 
					
						
							| 
									
										
										
										
											2000-11-27 21:53:14 +00:00
										 |  |  | if PyStringMap is not None: | 
					
						
							|  |  |  |     d[PyStringMap] = _copy_dict | 
					
						
							| 
									
										
										
										
											1995-01-10 00:34:21 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | def _copy_inst(x): | 
					
						
							| 
									
										
										
										
											2001-01-14 23:36:06 +00:00
										 |  |  |     if hasattr(x, '__copy__'): | 
					
						
							|  |  |  |         return x.__copy__() | 
					
						
							|  |  |  |     if hasattr(x, '__getinitargs__'): | 
					
						
							|  |  |  |         args = x.__getinitargs__() | 
					
						
							|  |  |  |         y = apply(x.__class__, args) | 
					
						
							|  |  |  |     else: | 
					
						
							|  |  |  |         y = _EmptyClass() | 
					
						
							|  |  |  |         y.__class__ = x.__class__ | 
					
						
							|  |  |  |     if hasattr(x, '__getstate__'): | 
					
						
							|  |  |  |         state = x.__getstate__() | 
					
						
							|  |  |  |     else: | 
					
						
							|  |  |  |         state = x.__dict__ | 
					
						
							|  |  |  |     if hasattr(y, '__setstate__'): | 
					
						
							|  |  |  |         y.__setstate__(state) | 
					
						
							|  |  |  |     else: | 
					
						
							|  |  |  |         y.__dict__.update(state) | 
					
						
							|  |  |  |     return y | 
					
						
							| 
									
										
										
										
											1995-01-10 00:34:21 +00:00
										 |  |  | d[types.InstanceType] = _copy_inst | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | del d | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def deepcopy(x, memo = None): | 
					
						
							| 
									
										
										
										
											2001-01-14 23:36:06 +00:00
										 |  |  |     """Deep copy operation on arbitrary Python objects.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     See the module's __doc__ string for more info. | 
					
						
							|  |  |  |     """
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if memo is None: | 
					
						
							|  |  |  |         memo = {} | 
					
						
							|  |  |  |     d = id(x) | 
					
						
							| 
									
										
										
										
											2002-06-01 14:18:47 +00:00
										 |  |  |     if d in memo: | 
					
						
							| 
									
										
										
										
											2001-01-14 23:36:06 +00:00
										 |  |  |         return memo[d] | 
					
						
							|  |  |  |     try: | 
					
						
							|  |  |  |         copierfunction = _deepcopy_dispatch[type(x)] | 
					
						
							|  |  |  |     except KeyError: | 
					
						
							|  |  |  |         try: | 
					
						
							| 
									
										
										
										
											2002-06-10 21:10:27 +00:00
										 |  |  |             issc = issubclass(type(x), type) | 
					
						
							|  |  |  |         except TypeError: | 
					
						
							|  |  |  |             issc = 0 | 
					
						
							|  |  |  |         if issc: | 
					
						
							|  |  |  |             y = _deepcopy_dispatch[type](x, memo) | 
					
						
							|  |  |  |         else: | 
					
						
							| 
									
										
										
										
											2001-09-28 18:13:29 +00:00
										 |  |  |             try: | 
					
						
							| 
									
										
										
										
											2002-06-10 21:10:27 +00:00
										 |  |  |                 copier = x.__deepcopy__ | 
					
						
							| 
									
										
										
										
											2001-09-28 18:13:29 +00:00
										 |  |  |             except AttributeError: | 
					
						
							| 
									
										
										
										
											2002-06-10 21:10:27 +00:00
										 |  |  |                 try: | 
					
						
							|  |  |  |                     reductor = x.__reduce__ | 
					
						
							|  |  |  |                 except AttributeError: | 
					
						
							|  |  |  |                     raise error, \ | 
					
						
							|  |  |  |                        "un-deep-copyable object of type %s" % type(x) | 
					
						
							|  |  |  |                 else: | 
					
						
							|  |  |  |                     y = _reconstruct(x, reductor(), 1, memo) | 
					
						
							| 
									
										
										
										
											2001-09-28 18:13:29 +00:00
										 |  |  |             else: | 
					
						
							| 
									
										
										
										
											2002-06-10 21:10:27 +00:00
										 |  |  |                 y = copier(memo) | 
					
						
							| 
									
										
										
										
											2001-01-14 23:36:06 +00:00
										 |  |  |     else: | 
					
						
							|  |  |  |         y = copierfunction(x, memo) | 
					
						
							|  |  |  |     memo[d] = y | 
					
						
							| 
									
										
										
										
											2002-08-12 20:20:08 +00:00
										 |  |  |     _keep_alive(x, memo) # Make sure x lives at least as long as d | 
					
						
							| 
									
										
										
										
											2001-01-14 23:36:06 +00:00
										 |  |  |     return y | 
					
						
							| 
									
										
										
										
											1995-01-10 00:34:21 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | _deepcopy_dispatch = d = {} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def _deepcopy_atomic(x, memo): | 
					
						
							| 
									
										
										
										
											2001-01-14 23:36:06 +00:00
										 |  |  |     return x | 
					
						
							| 
									
										
										
										
											1995-01-10 00:34:21 +00:00
										 |  |  | d[types.NoneType] = _deepcopy_atomic | 
					
						
							|  |  |  | d[types.IntType] = _deepcopy_atomic | 
					
						
							|  |  |  | d[types.LongType] = _deepcopy_atomic | 
					
						
							|  |  |  | d[types.FloatType] = _deepcopy_atomic | 
					
						
							| 
									
										
										
										
											2001-09-28 18:16:13 +00:00
										 |  |  | try: | 
					
						
							|  |  |  |     d[types.ComplexType] = _deepcopy_atomic | 
					
						
							|  |  |  | except AttributeError: | 
					
						
							|  |  |  |     pass | 
					
						
							| 
									
										
										
										
											1995-01-10 00:34:21 +00:00
										 |  |  | d[types.StringType] = _deepcopy_atomic | 
					
						
							| 
									
										
										
										
											2001-08-17 18:39:25 +00:00
										 |  |  | try: | 
					
						
							|  |  |  |     d[types.UnicodeType] = _deepcopy_atomic | 
					
						
							|  |  |  | except AttributeError: | 
					
						
							|  |  |  |     pass | 
					
						
							| 
									
										
										
										
											2002-02-28 23:19:52 +00:00
										 |  |  | try: | 
					
						
							|  |  |  |     d[types.CodeType] = _deepcopy_atomic | 
					
						
							|  |  |  | except AttributeError: | 
					
						
							|  |  |  |     pass | 
					
						
							| 
									
										
										
										
											1995-01-10 00:34:21 +00:00
										 |  |  | d[types.TypeType] = _deepcopy_atomic | 
					
						
							|  |  |  | d[types.XRangeType] = _deepcopy_atomic | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def _deepcopy_list(x, memo): | 
					
						
							| 
									
										
										
										
											2001-01-14 23:36:06 +00:00
										 |  |  |     y = [] | 
					
						
							|  |  |  |     memo[id(x)] = y | 
					
						
							|  |  |  |     for a in x: | 
					
						
							|  |  |  |         y.append(deepcopy(a, memo)) | 
					
						
							|  |  |  |     return y | 
					
						
							| 
									
										
										
										
											1995-01-10 00:34:21 +00:00
										 |  |  | d[types.ListType] = _deepcopy_list | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def _deepcopy_tuple(x, memo): | 
					
						
							| 
									
										
										
										
											2001-01-14 23:36:06 +00:00
										 |  |  |     y = [] | 
					
						
							|  |  |  |     for a in x: | 
					
						
							|  |  |  |         y.append(deepcopy(a, memo)) | 
					
						
							|  |  |  |     d = id(x) | 
					
						
							|  |  |  |     try: | 
					
						
							|  |  |  |         return memo[d] | 
					
						
							|  |  |  |     except KeyError: | 
					
						
							|  |  |  |         pass | 
					
						
							|  |  |  |     for i in range(len(x)): | 
					
						
							|  |  |  |         if x[i] is not y[i]: | 
					
						
							|  |  |  |             y = tuple(y) | 
					
						
							|  |  |  |             break | 
					
						
							|  |  |  |     else: | 
					
						
							|  |  |  |         y = x | 
					
						
							|  |  |  |     memo[d] = y | 
					
						
							|  |  |  |     return y | 
					
						
							| 
									
										
										
										
											1995-01-10 00:34:21 +00:00
										 |  |  | d[types.TupleType] = _deepcopy_tuple | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def _deepcopy_dict(x, memo): | 
					
						
							| 
									
										
										
										
											2001-01-14 23:36:06 +00:00
										 |  |  |     y = {} | 
					
						
							|  |  |  |     memo[id(x)] = y | 
					
						
							| 
									
										
										
										
											2002-06-02 18:55:56 +00:00
										 |  |  |     for key, value in x.iteritems(): | 
					
						
							|  |  |  |         y[deepcopy(key, memo)] = deepcopy(value, memo) | 
					
						
							| 
									
										
										
										
											2001-01-14 23:36:06 +00:00
										 |  |  |     return y | 
					
						
							| 
									
										
										
										
											1995-01-10 00:34:21 +00:00
										 |  |  | d[types.DictionaryType] = _deepcopy_dict | 
					
						
							| 
									
										
										
										
											2000-11-27 21:53:14 +00:00
										 |  |  | if PyStringMap is not None: | 
					
						
							|  |  |  |     d[PyStringMap] = _deepcopy_dict | 
					
						
							| 
									
										
										
										
											1995-01-10 00:34:21 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-08-20 22:26:19 +00:00
										 |  |  | def _keep_alive(x, memo): | 
					
						
							| 
									
										
										
										
											2001-01-14 23:36:06 +00: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 22:26:19 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-01-10 00:34:21 +00:00
										 |  |  | def _deepcopy_inst(x, memo): | 
					
						
							| 
									
										
										
										
											2001-01-14 23:36:06 +00:00
										 |  |  |     if hasattr(x, '__deepcopy__'): | 
					
						
							|  |  |  |         return x.__deepcopy__(memo) | 
					
						
							|  |  |  |     if hasattr(x, '__getinitargs__'): | 
					
						
							|  |  |  |         args = x.__getinitargs__() | 
					
						
							|  |  |  |         args = deepcopy(args, memo) | 
					
						
							|  |  |  |         y = apply(x.__class__, args) | 
					
						
							|  |  |  |     else: | 
					
						
							|  |  |  |         y = _EmptyClass() | 
					
						
							|  |  |  |         y.__class__ = x.__class__ | 
					
						
							|  |  |  |     memo[id(x)] = y | 
					
						
							|  |  |  |     if hasattr(x, '__getstate__'): | 
					
						
							|  |  |  |         state = x.__getstate__() | 
					
						
							|  |  |  |     else: | 
					
						
							|  |  |  |         state = x.__dict__ | 
					
						
							|  |  |  |     state = deepcopy(state, memo) | 
					
						
							|  |  |  |     if hasattr(y, '__setstate__'): | 
					
						
							|  |  |  |         y.__setstate__(state) | 
					
						
							|  |  |  |     else: | 
					
						
							|  |  |  |         y.__dict__.update(state) | 
					
						
							|  |  |  |     return y | 
					
						
							| 
									
										
										
										
											1995-01-10 00:34:21 +00:00
										 |  |  | d[types.InstanceType] = _deepcopy_inst | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-12-28 21:33:22 +00:00
										 |  |  | def _reconstruct(x, info, deep, memo=None): | 
					
						
							| 
									
										
										
										
											2001-09-28 18:13:29 +00:00
										 |  |  |     if isinstance(info, str): | 
					
						
							|  |  |  |         return x | 
					
						
							|  |  |  |     assert isinstance(info, tuple) | 
					
						
							| 
									
										
										
										
											2001-12-28 21:33:22 +00:00
										 |  |  |     if memo is None: | 
					
						
							|  |  |  |         memo = {} | 
					
						
							| 
									
										
										
										
											2001-09-28 18:13:29 +00:00
										 |  |  |     n = len(info) | 
					
						
							|  |  |  |     assert n in (2, 3) | 
					
						
							|  |  |  |     callable, args = info[:2] | 
					
						
							|  |  |  |     if n > 2: | 
					
						
							|  |  |  |         state = info[2] | 
					
						
							|  |  |  |     else: | 
					
						
							|  |  |  |         state = {} | 
					
						
							|  |  |  |     if deep: | 
					
						
							| 
									
										
										
										
											2001-12-28 21:33:22 +00:00
										 |  |  |         args = deepcopy(args, memo) | 
					
						
							| 
									
										
										
										
											2001-09-28 18:13:29 +00:00
										 |  |  |     y = callable(*args) | 
					
						
							|  |  |  |     if state: | 
					
						
							|  |  |  |         if deep: | 
					
						
							| 
									
										
										
										
											2001-12-28 21:33:22 +00:00
										 |  |  |             state = deepcopy(state, memo) | 
					
						
							| 
									
										
										
										
											2002-06-06 17:41:20 +00:00
										 |  |  |         if hasattr(y, '__setstate__'): | 
					
						
							|  |  |  |             y.__setstate__(state) | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             y.__dict__.update(state) | 
					
						
							| 
									
										
										
										
											2001-09-28 18:13:29 +00:00
										 |  |  |     return y | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-01-10 00:34:21 +00:00
										 |  |  | del d | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | del types | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-12-07 16:18:22 +00:00
										 |  |  | # Helper for instance creation without calling __init__ | 
					
						
							|  |  |  | class _EmptyClass: | 
					
						
							|  |  |  |     pass | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-01-10 00:34:21 +00:00
										 |  |  | def _test(): | 
					
						
							| 
									
										
										
										
											2001-01-14 23:36:06 +00:00
										 |  |  |     l = [None, 1, 2L, 3.14, 'xyzzy', (1, 2L), [3.14, 'abc'], | 
					
						
							|  |  |  |          {'abc': 'ABC'}, (), [], {}] | 
					
						
							|  |  |  |     l1 = copy(l) | 
					
						
							|  |  |  |     print l1==l | 
					
						
							|  |  |  |     l1 = map(copy, l) | 
					
						
							|  |  |  |     print l1==l | 
					
						
							|  |  |  |     l1 = deepcopy(l) | 
					
						
							|  |  |  |     print l1==l | 
					
						
							|  |  |  |     class C: | 
					
						
							|  |  |  |         def __init__(self, arg=None): | 
					
						
							|  |  |  |             self.a = 1 | 
					
						
							|  |  |  |             self.arg = arg | 
					
						
							|  |  |  |             if __name__ == '__main__': | 
					
						
							|  |  |  |                 import sys | 
					
						
							|  |  |  |                 file = sys.argv[0] | 
					
						
							|  |  |  |             else: | 
					
						
							|  |  |  |                 file = __file__ | 
					
						
							|  |  |  |             self.fp = open(file) | 
					
						
							|  |  |  |             self.fp.close() | 
					
						
							|  |  |  |         def __getstate__(self): | 
					
						
							|  |  |  |             return {'a': self.a, 'arg': self.arg} | 
					
						
							|  |  |  |         def __setstate__(self, state): | 
					
						
							| 
									
										
										
										
											2002-06-02 18:55:56 +00:00
										 |  |  |             for key, value in state.iteritems(): | 
					
						
							|  |  |  |                 setattr(self, key, value) | 
					
						
							| 
									
										
										
										
											2001-01-14 23:36:06 +00:00
										 |  |  |         def __deepcopy__(self, memo = None): | 
					
						
							|  |  |  |             new = self.__class__(deepcopy(self.arg, memo)) | 
					
						
							|  |  |  |             new.a = self.a | 
					
						
							|  |  |  |             return new | 
					
						
							|  |  |  |     c = C('argument sketch') | 
					
						
							|  |  |  |     l.append(c) | 
					
						
							|  |  |  |     l2 = copy(l) | 
					
						
							|  |  |  |     print l == l2 | 
					
						
							|  |  |  |     print l | 
					
						
							|  |  |  |     print l2 | 
					
						
							|  |  |  |     l2 = deepcopy(l) | 
					
						
							|  |  |  |     print l == l2 | 
					
						
							|  |  |  |     print l | 
					
						
							|  |  |  |     print l2 | 
					
						
							|  |  |  |     l.append({l[1]: l, 'xyz': l[2]}) | 
					
						
							|  |  |  |     l3 = copy(l) | 
					
						
							|  |  |  |     import repr | 
					
						
							|  |  |  |     print map(repr.repr, l) | 
					
						
							|  |  |  |     print map(repr.repr, l1) | 
					
						
							|  |  |  |     print map(repr.repr, l2) | 
					
						
							|  |  |  |     print map(repr.repr, l3) | 
					
						
							|  |  |  |     l3 = deepcopy(l) | 
					
						
							|  |  |  |     import repr | 
					
						
							|  |  |  |     print map(repr.repr, l) | 
					
						
							|  |  |  |     print map(repr.repr, l1) | 
					
						
							|  |  |  |     print map(repr.repr, l2) | 
					
						
							|  |  |  |     print map(repr.repr, l3) | 
					
						
							| 
									
										
										
										
											1995-01-10 00:34:21 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | if __name__ == '__main__': | 
					
						
							| 
									
										
										
										
											2001-01-14 23:36:06 +00:00
										 |  |  |     _test() |