Lines Matching refs:pickle
1 :mod:`copyreg` --- Register :mod:`pickle` support functions
5 :synopsis: Register pickle support functions.
10 module: pickle
16 specific objects. The :mod:`pickle` and :mod:`copy` modules use those functions
28 .. function:: pickle(type, function, constructor=None)
39 See the :mod:`pickle` module for more details on the interface
41 :attr:`~pickle.Pickler.dispatch_table` attribute of a pickler
42 object or subclass of :class:`pickle.Pickler` can also be used for
48 The example below would like to show how to register a pickle function and how
51 >>> import copyreg, copy, pickle
60 >>> copyreg.pickle(C, pickle_c)
64 >>> p = pickle.dumps(c) # doctest: +SKIP