commit | be92971b38c68fe472d908bdc8aa185963473308 | [log] [tgz] |
---|---|---|
author | Antoine Pitrou <solipsis@pitrou.net> | Mon Apr 15 21:35:25 2013 +0200 |
committer | Antoine Pitrou <solipsis@pitrou.net> | Mon Apr 15 21:35:25 2013 +0200 |
tree | 1cefffe3434e8449aa95701bb466ae8573df3129 | |
parent | 108d1b4a7962a7777b7fb6108f12df619ea9218b [diff] [blame] |
Issue #17710: Fix cPickle raising a SystemError on bogus input.
diff --git a/Lib/test/pickletester.py b/Lib/test/pickletester.py index 7f43dfb..34cafcb 100644 --- a/Lib/test/pickletester.py +++ b/Lib/test/pickletester.py
@@ -538,6 +538,8 @@ "'abc\"", # open quote and close quote don't match "'abc' ?", # junk after close quote "'\\'", # trailing backslash + "'", # issue #17710 + "' ", # issue #17710 # some tests of the quoting rules #"'abc\"\''", #"'\\\\a\'\'\'\\\'\\\\\''",