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 Guillaume
Recipients Guillaume, larry
Date 2020-08-02.20:56:15
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1596401775.19.0.63803368162.issue41459@roundup.psfhosted.org>
In-reply-to
Content
pickle.load() raises a criptic SystemError with malformed input, whereas I would have expected an UnpicklingError. 

"SystemError: deallocated bytearray object has exported buffers"

Because pickle is not meant for use on untrusted input, this likely would not be considered a servere issue. 

Reproducing: 

import pickle
f = open("crash-95c0cb965cb66f5eebc778a1d2304eaffb72f1aa", "rb")
d = pickle.load(f)
History
Date User Action Args
2020-08-02 20:56:15Guillaumesetrecipients: + Guillaume, larry
2020-08-02 20:56:15Guillaumesetmessageid: <1596401775.19.0.63803368162.issue41459@roundup.psfhosted.org>
2020-08-02 20:56:15Guillaumelinkissue41459 messages
2020-08-02 20:56:15Guillaumecreate