Lines Matching +full:object +full:- +full:copy
1 :mod:`copy_reg` --- Register :mod:`pickle` support functions
15 module: copy
18 specific objects. The :mod:`pickle`, :mod:`cPickle`, and :mod:`copy` modules
20 configuration information about object constructors which are not classes.
24 .. function:: constructor(object)
26 Declares *object* to be a valid constructor. If *object* is not callable (and
33 type *type*; *type* must not be a "classic" class object. (Classic classes are
38 The optional *constructor* parameter, if provided, is a callable object which
39 can be used to reconstruct the object when called with the tuple of arguments
41 *object* is a class or *constructor* is not callable.
47 -------
52 >>> import copy_reg, copy, pickle
53 >>> class C(object):
63 >>> d = copy.copy(c)