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 Ultrasick, mark.dickinson
Date 2009-01-31.15:36:00
SpamBayes Score 5.3514415e-11
Marked as misclassified No
Message-id <1233416163.3.0.884154866046.issue5118@psf.upfronthosting.co.za>
In-reply-to
Content
> So you might want to reopen the bug. But either way I don't consider
> this bug as really serious either.

I don't understand.  As far as I can see '%.2f' % 2.545 is returning
the correct result: there is no bug here, so no need to reopen. '%.2f' 
should *not* return 2.55;  it should return 2.54, which is exactly what it 
does.  round(2.545, 2) should also return 2.54, but returns 2.55 instead;  
issue 1869 is already open for this.

You're correct that the float formatting doesn't use round:  it does 
whatever the platform C library's sprintf does.
History
Date User Action Args
2009-01-31 15:36:03mark.dickinsonsetrecipients: + mark.dickinson, Ultrasick
2009-01-31 15:36:03mark.dickinsonsetmessageid: <1233416163.3.0.884154866046.issue5118@psf.upfronthosting.co.za>
2009-01-31 15:36:00mark.dickinsonlinkissue5118 messages
2009-01-31 15:36:00mark.dickinsoncreate