cpython (3.5): Make catched exception more specific and correct a comment.
https://hg.python.org/cpython/rev/b35212d6d4ce changeset: 99724:b35212d6d4ce branch: 3.5 parent: 99720:4679b841e5ef user: Serhiy Storchaka <storchaka@gmail.com> date: Wed Dec 30 21:00:08 2015 +0200 summary: Make catched exception more specific and correct a comment. files: Lib/test/pickletester.py | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Lib/test/pickletester.py b/Lib/test/pickletester.py --- a/Lib/test/pickletester.py +++ b/Lib/test/pickletester.py @@ -1944,15 +1944,15 @@ # 5th item is not an iterator return dict, (), None, None, [] - # Protocol 0 is less strict and also accept iterables. + # Python implementation is less strict and also accepts iterables. for proto in protocols: try: self.dumps(C(), proto) - except (pickle.PickleError): + except pickle.PicklingError: pass try: self.dumps(D(), proto) - except (pickle.PickleError): + except pickle.PicklingError: pass def test_many_puts_and_gets(self): -- Repository URL: https://hg.python.org/cpython
participants (1)
-
serhiy.storchaka