Lines Matching refs:pickle
1 :mod:`copy_reg` --- Register :mod:`pickle` support functions
5 :synopsis: Register pickle support functions.
13 module: pickle
18 specific objects. The :mod:`pickle`, :mod:`cPickle`, and :mod:`copy` modules
30 .. function:: pickle(type, function[, constructor])
34 handled differently; see the documentation for the :mod:`pickle` module for
43 See the :mod:`pickle` module for more details on the interface expected of
49 The example below would like to show how to register a pickle function and how
52 >>> import copy_reg, copy, pickle
61 >>> copy_reg.pickle(C, pickle_c)
65 >>> p = pickle.dumps(c)