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 Kiriakos.Vlahos, eric.smith, mark.dickinson, sjmachin
Date 2010-09-29.07:27:23
SpamBayes Score 4.1773673e-10
Marked as misclassified No
Message-id <1285745245.9.0.587500866615.issue9980@psf.upfronthosting.co.za>
In-reply-to
Content
> I'm surprised that 3.2 fixes this:  the float-to-string conversion code > is pretty much identical in both 3.1 and 3.2.

Whoops---not quite.  The conversion code *is* pretty much identical, but 3.2 now uses a different algorithm for str (it's equal to repr now).  So I'd expect that you'll see the issue in 3.2 too if you try something like

    '%.12g' % 38210.0

Kiriakos, can you explain a bit more what the difference is between the 'remote engine' and the 'stand along interpreter'?  Is the core Python library compiled using different compilers for these two?

Eric, are you able to reproduce this at all?  I don't have access to Windows at the moment.
History
Date User Action Args
2010-09-29 07:27:25mark.dickinsonsetrecipients: + mark.dickinson, sjmachin, eric.smith, Kiriakos.Vlahos
2010-09-29 07:27:25mark.dickinsonsetmessageid: <1285745245.9.0.587500866615.issue9980@psf.upfronthosting.co.za>
2010-09-29 07:27:24mark.dickinsonlinkissue9980 messages
2010-09-29 07:27:23mark.dickinsoncreate