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 eric.smith
Recipients Francis.Nimick, docs@python, eric.smith, mark.dickinson, r.david.murray, terry.reedy
Date 2013-02-23.08:58:50
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1361609931.09.0.348357108806.issue17259@psf.upfronthosting.co.za>
In-reply-to
Content
I've just looked through the code for 2.7. It uses short float repr for both %-formatting and for float.__format__. So they both use Gay's code, and both should work the same as they do in 3.2+. In all cases, round-half-to-even is used.

It's 2.6 that uses the C library to do float formatting (for both %-formatting and float.__format__).
History
Date User Action Args
2013-02-23 08:58:51eric.smithsetrecipients: + eric.smith, terry.reedy, mark.dickinson, r.david.murray, docs@python, Francis.Nimick
2013-02-23 08:58:51eric.smithsetmessageid: <1361609931.09.0.348357108806.issue17259@psf.upfronthosting.co.za>
2013-02-23 08:58:51eric.smithlinkissue17259 messages
2013-02-23 08:58:50eric.smithcreate