Staging
v0.5.1
https://github.com/python/cpython
Revision c9ea7572e97c959ef01c486d7f97da89c60f5db9 authored by Guido van Rossum on 10 April 1998, 18:08:06 UTC, committed by Guido van Rossum on 10 April 1998, 18:08:06 UTC
beta -- if there are bugs, I'll post a patch page and release 1.5.2
sooner.)
1 parent 4d856ee
Raw File
Tip revision: c9ea7572e97c959ef01c486d7f97da89c60f5db9 authored by Guido van Rossum on 10 April 1998, 18:08:06 UTC
Set the patch level to 1.5.1. (I'm not going to release this as a
Tip revision: c9ea757
libcopyreg.tex
\section{Standard Module \module{copy_reg}}
% Note that the label is a little off; the underscore causes LaTeX to
% yell & scream.
\label{module-copyreg}
\stmodindex{copy_reg}

The \code{copy_reg} module provides support for the
\code{pickle}\refstmodindex{pickle} and
\code{cPickle}\refbimodindex{cPickle} modules.  The
\code{copy}\refstmodindex{copy} module is likely to use this in the
future as well.  It provides configuration information about object
constructors which are not classes.  Such constructors may be factory
functions or class instances.


\begin{funcdesc}{constructor}{object}
  Declares \var{object} to be a valid constructor.
\end{funcdesc}

\begin{funcdesc}{pickle}{type, function\optional{, constructor}}
  Declares that \var{function} should be used as a ``reduction''
  function for objects of type or class \var{type}.  \var{function}
  should return either a string or a tuple.  The optional
  \var{constructor} parameter, if provided, is a callable object which
  can be used to reconstruct the object when called with the tuple of
  arguments returned by \var{function} at pickling time.
\end{funcdesc}
back to top