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 tim.peters
Recipients anon, hct, mark.dickinson, rhettinger, serhiy.storchaka, tim.peters, vstinner
Date 2013-12-09.03:29:44
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1386559784.81.0.342826722451.issue19915@psf.upfronthosting.co.za>
In-reply-to
Content
@serhiy, Mark certainly knows the proposed addition isn't _needed_ to pick apart 64-bit integers.  It's an issue there of clarity, not O() behavior.  For example, `i.bits_at(0, 52)` to get at a double's mantissa requires no thought at all to write or to read later; bit-level gibberish like

i & ~((~0) << 52)

or

i & ((1 << 52) - 1)

or ... is painful to write and to read.
History
Date User Action Args
2013-12-09 03:29:44tim.peterssetrecipients: + tim.peters, rhettinger, mark.dickinson, vstinner, serhiy.storchaka, hct, anon
2013-12-09 03:29:44tim.peterssetmessageid: <1386559784.81.0.342826722451.issue19915@psf.upfronthosting.co.za>
2013-12-09 03:29:44tim.peterslinkissue19915 messages
2013-12-09 03:29:44tim.peterscreate