From: Senthil Kumaran Date: Tue, 22 Jun 2010 02:57:23 +0000 (+0000) Subject: Minor comment formatting. X-Git-Tag: v3.2a1~484 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0aae6dc6f5f405181b8620035fd38370c90546c4;p=python Minor comment formatting. --- diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index ad00c9a24d..a2682bb86d 100644 --- a/Doc/library/stdtypes.rst +++ b/Doc/library/stdtypes.rst @@ -452,7 +452,7 @@ Additional Methods on Integer Types Equivalent to:: def bit_length(self): - s = bin(self) # binary representation: bin(-37) --> '-0b100101' + s = bin(self) # binary representation: bin(-37) --> '-0b100101' s = s.lstrip('-0b') # remove leading zeros and minus sign return len(s) # len('100101') --> 6