From: Alexandre Vassalotti Date: Wed, 11 Jun 2008 23:28:22 +0000 (+0000) Subject: Removed exception renaming cruft in pickle.py. X-Git-Tag: v3.0b1~88 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=66b343b65fa255b35536f781d0eb8db66325572b;p=thirdparty%2FPython%2Fcpython.git Removed exception renaming cruft in pickle.py. --- diff --git a/Lib/pickle.py b/Lib/pickle.py index 8a8e62338208..8f1f9f0b7716 100644 --- a/Lib/pickle.py +++ b/Lib/pickle.py @@ -1308,9 +1308,6 @@ try: from _pickle import * except ImportError: Pickler, Unpickler = _Pickler, _Unpickler - PickleError = _PickleError - PicklingError = _PicklingError - UnpicklingError = _UnpicklingError # Shorthands