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 vstinner
Recipients collinwinter, eric.smith, gawain, gregory.p.smith, mark.dickinson, vstinner
Date 2009-09-10.07:48:40
SpamBayes Score 2.7654756e-09
Marked as misclassified No
Message-id <1252568922.5.0.179955751627.issue6713@psf.upfronthosting.co.za>
In-reply-to
Content
> If you're working with huge integers and care about speed, then 
> you should probably be using gmpy or similar

I disagree with you, mark. The patch is around 20 lines and does optimize all
cases, not only the "huge integers". See my benchmark: conversion for small
integers (type 'int') are also faster (7 to 22%). I think that the base 10 is more
common than 2^k bases, and a conversion from integer to decimal string is a
very common operation in Python.
History
Date User Action Args
2009-09-10 07:48:42vstinnersetrecipients: + vstinner, collinwinter, gregory.p.smith, mark.dickinson, eric.smith, gawain
2009-09-10 07:48:42vstinnersetmessageid: <1252568922.5.0.179955751627.issue6713@psf.upfronthosting.co.za>
2009-09-10 07:48:41vstinnerlinkissue6713 messages
2009-09-10 07:48:40vstinnercreate