diff options
author | Georg Brandl <georg@python.org> | 2009-04-11 18:19:27 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-04-11 18:19:27 (GMT) |
commit | 64e1c754555654c613a65a97186930659bf08b70 (patch) | |
tree | 23b50425733424e70ad7c6dc546ce8b34964f188 /Doc | |
parent | 5331d4b4de59cca76a9d61f2e66851cfa70bba00 (diff) | |
download | cpython-64e1c754555654c613a65a97186930659bf08b70.zip cpython-64e1c754555654c613a65a97186930659bf08b70.tar.gz cpython-64e1c754555654c613a65a97186930659bf08b70.tar.bz2 |
Take credit for a patch of mine.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/whatsnew/2.7.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/whatsnew/2.7.rst b/Doc/whatsnew/2.7.rst index d7a70ab..55d9a2b 100644 --- a/Doc/whatsnew/2.7.rst +++ b/Doc/whatsnew/2.7.rst @@ -106,7 +106,7 @@ Some smaller changes made to the core Python language are: (Contributed by XXX; :issue`5237`.) * The :func:`int` and :func:`long` types gained a ``bit_length`` -'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''' method that returns the number of bits necessary to represent + method that returns the number of bits necessary to represent its argument in binary:: >>> n = 37 @@ -282,7 +282,7 @@ changes, or look through the Subversion logs for all the details. setting the *optional* option setting to true. If this optional is supplied, failure to build the extension will not abort the build process, but instead simply not install the failing extension. - (Contributed by XXX; :issue:`5583`.) + (Contributed by Georg Brandl; :issue:`5583`.) * New method: the :class:`Decimal` class gained a :meth:`from_float` class method that performs an exact conversion |