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 facundobatista
Recipients collinwinter, facundobatista, richardh2003, tim.peters
Date 2008-01-19.14:28:27
SpamBayes Score 0.0720561
Marked as misclassified No
Message-id <1200752909.11.0.33251648204.issue705836@psf.upfronthosting.co.za>
In-reply-to
Content
A lot of water passed around this bridge, but I don't know if this is fixed:

In the trunk right, now:

>>> v = 7.0 + .1 + .1 + .1 + .1 + .1 + .1 + .1 + .1 + .1 + .1
>>> v
7.9999999999999964
>>> p = struct.pack( ">f", v )
>>> p
'A\x00\x00\x00'
>>> struct.unpack(">f", p)
(8.0,)
History
Date User Action Args
2008-01-19 14:28:29facundobatistasetspambayes_score: 0.0720561 -> 0.0720561
recipients: + facundobatista, tim.peters, collinwinter, richardh2003
2008-01-19 14:28:29facundobatistasetspambayes_score: 0.0720561 -> 0.0720561
messageid: <1200752909.11.0.33251648204.issue705836@psf.upfronthosting.co.za>
2008-01-19 14:28:28facundobatistalinkissue705836 messages
2008-01-19 14:28:27facundobatistacreate