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
Date 2014-12-21.08:10:32
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1419149433.29.0.802482425543.issue23096@psf.upfronthosting.co.za>
In-reply-to
Content
Python and C implementations of pickle produce different results when pickle floats with protocol 0.

>>> pickle.dumps(4.2, 0)
b'F4.2000000000000002\n.'
>>> pickle._dumps(4.2, 0)
b'F4.2\n.'
History
Date User Action Args
2014-12-21 08:10:33serhiy.storchakasetrecipients: + serhiy.storchaka, pitrou, alexandre.vassalotti
2014-12-21 08:10:33serhiy.storchakasetmessageid: <1419149433.29.0.802482425543.issue23096@psf.upfronthosting.co.za>
2014-12-21 08:10:33serhiy.storchakalinkissue23096 messages
2014-12-21 08:10:32serhiy.storchakacreate