summaryrefslogtreecommitdiffstats
path: root/Lib/copy.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2003-02-19 01:20:40 (GMT)
committerGuido van Rossum <guido@python.org>2003-02-19 01:20:40 (GMT)
commit9c9cf41a011bb7506a59870119d429f92a963a3f (patch)
tree9b22d5678583e0a9c2ef7a442a63e31bdf99508c /Lib/copy.py
parente690883ccf8081e5baab0e9d71f596f26245b569 (diff)
downloadcpython-9c9cf41a011bb7506a59870119d429f92a963a3f.zip
cpython-9c9cf41a011bb7506a59870119d429f92a963a3f.tar.gz
cpython-9c9cf41a011bb7506a59870119d429f92a963a3f.tar.bz2
Remove now unused _better_reduce.
Diffstat (limited to 'Lib/copy.py')
-rw-r--r--Lib/copy.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/copy.py b/Lib/copy.py
index 9b9f5b3..1d7ba56 100644
--- a/Lib/copy.py
+++ b/Lib/copy.py
@@ -49,7 +49,7 @@ __getstate__() and __setstate__(). See the documentation for module
"""
import types
-from copy_reg import _better_reduce, dispatch_table
+from copy_reg import dispatch_table
class Error(Exception):
pass