Clarify that copy_reg.pickle() is not intended for use with "classic" classes.
authorFred Drake <fdrake@acm.org>
Tue, 19 Mar 2002 03:33:33 +0000 (03:33 +0000)
committerFred Drake <fdrake@acm.org>
Tue, 19 Mar 2002 03:33:33 +0000 (03:33 +0000)
This was stated before, but a minor grammatical error made it difficult to be
sure of the meaning.
This closes SF bug #530143.

Doc/lib/libcopyreg.tex

index 25cc505b194bb71e5d28480f3642f1c9178cb5dd..b2ea01549bf2eac1056300f1ab1b393c37c37282 100644 (file)
@@ -22,9 +22,11 @@ functions or class instances.
 
 \begin{funcdesc}{pickle}{type, function\optional{, constructor}}
   Declares that \var{function} should be used as a ``reduction''
-  function for objects of type \var{type}; \var{type} should not a
-  class object.  \var{function} should return either a string or a
-  tuple containing two or three elements.
+  function for objects of type \var{type}; \var{type} must not be a
+  ``classic'' class object.  (Classic classes are handled differently;
+  see the documentation for the \refmodule{pickle} module for
+  details.)  \var{function} should return either a string or a tuple
+  containing two or three elements.
 
   The optional \var{constructor} parameter, if provided, is a
   callable object which can be used to reconstruct the object when