Message 186821 - Python tracker
Message186821
| 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:12 | serhiy.storchaka | set | recipients: + serhiy.storchaka, pitrou, vstinner, alexandre.vassalotti |
| 2013-04-13 20:17:12 | serhiy.storchaka | set | messageid: <1365884232.22.0.667614363366.issue17710@psf.upfronthosting.co.za> |
| 2013-04-13 20:17:12 | serhiy.storchaka | link | issue17710 messages |
| 2013-04-13 20:17:12 | serhiy.storchaka | create | |