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 christian.heimes, mark.dickinson
Date 2008-03-01.21:38:48
SpamBayes Score 0.3877381
Marked as misclassified No
Message-id <1204407530.31.0.858297937643.issue2121@psf.upfronthosting.co.za>
In-reply-to
Content
Signed zeros cause difficulties with round-tripping, too:

>>> z = complex(-0.0, -0.0); w = complex(repr(z))
>>> z
-0j
>>> w
-0j
>>> z.real
-0.0
>>> w.real
0.0
History
Date User Action Args
2008-03-01 21:38:50mark.dickinsonsetspambayes_score: 0.387738 -> 0.3877381
recipients: + mark.dickinson, christian.heimes
2008-03-01 21:38:50mark.dickinsonsetspambayes_score: 0.387738 -> 0.387738
messageid: <1204407530.31.0.858297937643.issue2121@psf.upfronthosting.co.za>
2008-03-01 21:38:49mark.dickinsonlinkissue2121 messages
2008-03-01 21:38:48mark.dickinsoncreate