]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Update numbers doc for the Integral simplification.
authorRaymond Hettinger <python@rcn.com>
Wed, 11 Jun 2008 00:28:51 +0000 (00:28 +0000)
committerRaymond Hettinger <python@rcn.com>
Wed, 11 Jun 2008 00:28:51 +0000 (00:28 +0000)
Doc/library/numbers.rst

index 37220b5066b9e6fa44005738c5ef3cb9af902e14..b7aafb235840e1c9f83125f41ce8ea76d82f4301 100644 (file)
@@ -73,10 +73,10 @@ The numeric tower
 
 .. class:: Integral
 
-   Subtypes :class:`Rational` and adds a conversion to :class:`long`, the
-   3-argument form of :func:`pow`, and the bit-string operations: ``<<``,
-   ``>>``, ``&``, ``^``, ``|``, ``~``. Provides defaults for :func:`float`,
-   :attr:`Rational.numerator`, and :attr:`Rational.denominator`.
+   Subtypes :class:`Rational` and adds a conversion to :class:`int`.
+   Provides defaults for :func:`float`, :attr:`Rational.numerator`, and
+   :attr:`Rational.denominator`, and bit-string operations: ``<<``,
+   ``>>``, ``&``, ``^``, ``|``, ``~``.
 
 
 Notes for type implementors