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 gregory.p.smith, mark.dickinson, vstinner
Date 2008-11-10.13:50:57
SpamBayes Score 2.3586135e-05
Marked as misclassified No
Message-id <1226325058.9.0.450220362322.issue4294@psf.upfronthosting.co.za>
In-reply-to
Content
Second patch to optimize some PyLong operations:
 - Write special code for small (a, b) of long_true_div(), 
long_bitwise(), and l_divmod() (used by long_div(), long_mod() and 
long_divmod(), and long_pow())
 - PyLong_FromLong(): don't go to the while() for small *negative* 
integers

TODO: Write special code for small integers of long_rshift() and 
long_lshift()
History
Date User Action Args
2008-11-10 13:50:59vstinnersetrecipients: + vstinner, gregory.p.smith, mark.dickinson
2008-11-10 13:50:58vstinnersetmessageid: <1226325058.9.0.450220362322.issue4294@psf.upfronthosting.co.za>
2008-11-10 13:50:58vstinnerlinkissue4294 messages
2008-11-10 13:50:58vstinnercreate