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 hagen
Recipients hagen
Date 2008-07-18.10:40:24
SpamBayes Score 0.056148108
Marked as misclassified No
Message-id <1216377626.86.0.147099766494.issue3404@psf.upfronthosting.co.za>
In-reply-to
Content
This seems to be wrong:

>>> "{0:.2}".format(1.2345)
'1.2'

The same happens for format specifiers "g" and "n", but not for "f":

>>> "{0:.2f}".format(1.2345)
'1.23'

With empty format specifier it can even get really wrong:

>>> "{0:.1}".format(1.2345)
'1.0'
History
Date User Action Args
2008-07-18 10:40:27hagensetspambayes_score: 0.0561481 -> 0.056148108
recipients: + hagen
2008-07-18 10:40:27hagensetspambayes_score: 0.0561481 -> 0.0561481
messageid: <1216377626.86.0.147099766494.issue3404@psf.upfronthosting.co.za>
2008-07-18 10:40:25hagenlinkissue3404 messages
2008-07-18 10:40:25hagencreate