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 skrah
Recipients Kiriakos.Vlahos, brian.curtin, eric.smith, loewis, mark.dickinson, sjmachin, skrah
Date 2010-09-30.12:14:27
SpamBayes Score 3.038339e-05
Marked as misclassified No
Message-id <1285848868.6.0.695743029598.issue9980@psf.upfronthosting.co.za>
In-reply-to
Content
The tracker swallowed some parts of my mail:

In general, execution times for _Py_dg_dtoa vary quite a bit depending on
the number that is converted:

>>> s = "str(1.00000000000000005e300)"
>>> t = timeit.Timer(stmt=s)
>>> t.timeit(number=10000000)
5.097490072250366

>>> s = "str(1.00000000000000005e384)"
>>> t = timeit.Timer(stmt=s)
>>> t.timeit(number=10000000)
2.417008876800537
History
Date User Action Args
2010-09-30 12:14:28skrahsetrecipients: + skrah, loewis, sjmachin, mark.dickinson, eric.smith, brian.curtin, Kiriakos.Vlahos
2010-09-30 12:14:28skrahsetmessageid: <1285848868.6.0.695743029598.issue9980@psf.upfronthosting.co.za>
2010-09-30 12:14:27skrahlinkissue9980 messages
2010-09-30 12:14:27skrahcreate