summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1997-10-07 14:47:50 (GMT)
committerGuido van Rossum <guido@python.org>1997-10-07 14:47:50 (GMT)
commitabfdd706654cd9610bcc5c9c62a22571317e7752 (patch)
treefd47fdfb958b208e12bf27e6f6fd1cb8209a7b5b
parent90981e0e70450bfb58f0d83d4e4d00a4a7d4d5d9 (diff)
downloadcpython-abfdd706654cd9610bcc5c9c62a22571317e7752.zip
cpython-abfdd706654cd9610bcc5c9c62a22571317e7752.tar.gz
cpython-abfdd706654cd9610bcc5c9c62a22571317e7752.tar.bz2
Add XXX note about wanting support for copy_reg.py...
-rw-r--r--Lib/copy.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/copy.py b/Lib/copy.py
index ef5b10e..ef15982 100644
--- a/Lib/copy.py
+++ b/Lib/copy.py
@@ -50,6 +50,8 @@ __getstate__() and __setstate__(). See the __doc__ string of module
"pickle" for information on these methods.
"""
+# XXX need to support copy_reg here too...
+
import types
error = 'copy.error'