diff options
author | Guido van Rossum <guido@python.org> | 2003-02-19 01:20:40 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2003-02-19 01:20:40 (GMT) |
commit | 9c9cf41a011bb7506a59870119d429f92a963a3f (patch) | |
tree | 9b22d5678583e0a9c2ef7a442a63e31bdf99508c /Lib/copy.py | |
parent | e690883ccf8081e5baab0e9d71f596f26245b569 (diff) | |
download | cpython-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.py | 2 |
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 |