消息 [108322]
There is a small mistake in the docs:
def bit_length(x):
'Number of bits necessary to represent self in binary.'
s = bin(x) # binary representation: bin(-37) --> '-0b100101'
s = s.lstrip('-0b') # remove leading zeros and minus sign
return len(s) # len('100101') --> 6
is probably supposed to be:
def bit_length(x):
'Number of bits necessary to represent x in binary.'
s = bin(x) # binary representation: bin(-37) --> '-0b100101'
s = s.lstrip('-0b') # remove leading zeros and minus sign
return len(s) # len('100101') --> 6 |
|
| 日期 |
用户 |
动作 |
参数 |
| 2010-06-21 22:04:06 | zooko | 修改 | recipients:
+ zooko, rhettinger, terry.reedy, mark.dickinson, pitrou, vstinner, fredrikj |
| 2010-06-21 22:04:05 | zooko | 修改 | messageid: <1277157845.73.0.885521494438.issue3439@psf.upfronthosting.co.za> |
| 2010-06-21 22:04:03 | zooko | 链接 | issue3439 messages |
| 2010-06-21 22:04:02 | zooko | 创建 | |
|