Message77898
Oops, forgot one part of the doc definition in the proposed additional
tests:
for x in range(-65000, 65000):
k = x.numbits()
assert k == len(bin(x).lstrip('-0b'))
if x > 0:
assert 2 ** (k-1) <= x < 2**k
assert k == 1 + math.floor(math.log(x) / math.log(2))
elif x == 0:
assert k == 0
else:
assert k == (-x).numbits() |
|
Date |
User |
Action |
Args |
2008-12-16 12:47:14 | rhettinger | set | recipients:
+ rhettinger, loewis, terry.reedy, mark.dickinson, pitrou, vstinner, fredrikj |
2008-12-16 12:47:13 | rhettinger | set | messageid: <1229431633.92.0.587074592179.issue3439@psf.upfronthosting.co.za> |
2008-12-16 12:47:12 | rhettinger | link | issue3439 messages |
2008-12-16 12:47:12 | rhettinger | create | |
|