Message232992
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.' |
|
Date |
User |
Action |
Args |
2014-12-21 08:10:33 | serhiy.storchaka | set | recipients:
+ serhiy.storchaka, pitrou, alexandre.vassalotti |
2014-12-21 08:10:33 | serhiy.storchaka | set | messageid: <1419149433.29.0.802482425543.issue23096@psf.upfronthosting.co.za> |
2014-12-21 08:10:33 | serhiy.storchaka | link | issue23096 messages |
2014-12-21 08:10:32 | serhiy.storchaka | create | |
|