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 christian.heimes
Recipients christian.heimes, gvanrossum, nascheme, noam, tim.peters
Date 2007-12-11.09:11:02
SpamBayes Score 0.3154867
Marked as misclassified No
Message-id <1197364262.84.0.178722905638.issue1580@psf.upfronthosting.co.za>
In-reply-to
Content
It's really a shame. It was a nice idea ...

Could we at least use the new formating for str(float) and the display
of floats? In Python 2.6 floats are not displayed with repr(). They seem
to use yet another hook.

>>> repr(11./5)
'2.2'
>>> 11./5
2.2000000000000002
>>> str(11./5)
'2.2'
History
Date User Action Args
2007-12-11 09:11:03christian.heimessetspambayes_score: 0.315487 -> 0.3154867
recipients: + christian.heimes, gvanrossum, tim.peters, nascheme, noam
2007-12-11 09:11:02christian.heimessetspambayes_score: 0.315487 -> 0.315487
messageid: <1197364262.84.0.178722905638.issue1580@psf.upfronthosting.co.za>
2007-12-11 09:11:02christian.heimeslinkissue1580 messages
2007-12-11 09:11:02christian.heimescreate