This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author serhiy.storchaka
Recipients alexandre.vassalotti, pitrou, serhiy.storchaka, vstinner
Date 2013-04-13.20:17:12
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1365884232.22.0.667614363366.issue17710@psf.upfronthosting.co.za>
In-reply-to
Content
Of course, UnpicklingError is not a bug. Perhaps almost any exception except SystemError is not a bug. I mention it because it's a case where Python 3 differs from Python 2.

I think _pickle.c patches can be simplified.

+    if (len < 2)
+        goto insecure;
     if (s[0] == '"' && s[len - 1] == '"') {
History
Date User Action Args
2013-04-13 20:17:12serhiy.storchakasetrecipients: + serhiy.storchaka, pitrou, vstinner, alexandre.vassalotti
2013-04-13 20:17:12serhiy.storchakasetmessageid: <1365884232.22.0.667614363366.issue17710@psf.upfronthosting.co.za>
2013-04-13 20:17:12serhiy.storchakalinkissue17710 messages
2013-04-13 20:17:12serhiy.storchakacreate