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, benjamin.peterson, pitrou, serhiy.storchaka
Date 2017-10-21.09:55:03
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1508579703.27.0.213398074469.issue31829@psf.upfronthosting.co.za>
In-reply-to
Content
PR 4067 fixes following issues when unpickle on Unix or in binary mode files written with protocol 0 in text mode on Windows:

* ints were unpickled as longs by cPickle.
* bools were unpickled as longs by cPickle and as ints by pickle.
* floats couldn't be unpickled by cPickle.
* strings couldn't be unpickled by pickle.
* instances and globals couldn't be unpickled. And error messages were confusing due to invisible \r.
* pickles with protocol 0 containing Unicode string with \x1a couldn't be unpickled on Windows in text mode.
History
Date User Action Args
2017-10-21 09:55:03serhiy.storchakasetrecipients: + serhiy.storchaka, pitrou, alexandre.vassalotti, benjamin.peterson
2017-10-21 09:55:03serhiy.storchakasetmessageid: <1508579703.27.0.213398074469.issue31829@psf.upfronthosting.co.za>
2017-10-21 09:55:03serhiy.storchakalinkissue31829 messages
2017-10-21 09:55:03serhiy.storchakacreate