summaryrefslogtreecommitdiff
path: root/Lib/copy.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1997-10-07 14:47:50 +0000
committerGuido van Rossum <guido@python.org>1997-10-07 14:47:50 +0000
commitabfdd706654cd9610bcc5c9c62a22571317e7752 (patch)
treefd47fdfb958b208e12bf27e6f6fd1cb8209a7b5b /Lib/copy.py
parent90981e0e70450bfb58f0d83d4e4d00a4a7d4d5d9 (diff)
downloadcpython-git-abfdd706654cd9610bcc5c9c62a22571317e7752.tar.gz
Add XXX note about wanting support for copy_reg.py...
Diffstat (limited to 'Lib/copy.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 ef5b10edd0..ef1598285b 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'