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 mark.dickinson
Recipients alexandre.vassalotti, amaury.forgeotdarc, christian.heimes, gvanrossum, mark.dickinson, nascheme, noam, rhettinger, skip.montanaro, tim.peters
Date 2008-07-11.15:31:51
SpamBayes Score 0.004861148
Marked as misclassified No
Message-id <1215790314.59.0.221921953209.issue1580@psf.upfronthosting.co.za>
In-reply-to
Content
Mildly off-topic:  it seems that currently eval(repr(x)) == x isn't 
always true, anyway.  On OS X 10.5.4/Intel, I get:

>>> x = (2**52-1)*2.**(-1074)
>>> x
2.2250738585072009e-308
>>> y = eval(repr(x))
>>> y
2.2250738585072014e-308
>>> x == y
False

This is almost certainly an OS X bug...
History
Date User Action Args
2008-07-11 15:31:55mark.dickinsonsetspambayes_score: 0.00486115 -> 0.004861148
recipients: + mark.dickinson, gvanrossum, tim.peters, skip.montanaro, nascheme, rhettinger, amaury.forgeotdarc, christian.heimes, alexandre.vassalotti, noam
2008-07-11 15:31:54mark.dickinsonsetspambayes_score: 0.00486115 -> 0.00486115
messageid: <1215790314.59.0.221921953209.issue1580@psf.upfronthosting.co.za>
2008-07-11 15:31:53mark.dickinsonlinkissue1580 messages
2008-07-11 15:31:52mark.dickinsoncreate