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 fredrikj, loewis, mark.dickinson, rhettinger, terry.reedy, vstinner
Date 2008-10-14.19:29:01
SpamBayes Score 8.227305e-06
Marked as misclassified No
Message-id <1224012544.13.0.0870547921852.issue3439@psf.upfronthosting.co.za>
In-reply-to
Content
One more minor deficiency in the patch: it gives incorrect results for 
very large integers.  For example, on a 32-bit build of the trunk:

>>> x = 1 << 2**31-1
>>> x <<= 2**31-1
>>> x.numbits()  # expect 4294967295
4294967295L
>>> x <<= 2
>>> x.numbits()  # expect 4294967297
4294967295L

It would be nicer if the OverflowError from _PyLong_NumBits were 
propagated, so that the second case raises OverflowError instead of giving 
an incorrect result.

Alternatively, in case of OverflowError one could recompute numbits 
correctly, without overflow, by using Python longs instead of a C size_t;  
but this would mean adding little-used, and probably little-tested, extra 
code for what must be a very rare special case.  Probably not worth it.
History
Date User Action Args
2008-10-14 19:29:04mark.dickinsonsetrecipients: + mark.dickinson, loewis, rhettinger, terry.reedy, vstinner, fredrikj
2008-10-14 19:29:04mark.dickinsonsetmessageid: <1224012544.13.0.0870547921852.issue3439@psf.upfronthosting.co.za>
2008-10-14 19:29:01mark.dickinsonlinkissue3439 messages
2008-10-14 19:29:01mark.dickinsoncreate