diff options
author | Raymond Hettinger <python@rcn.com> | 2008-06-11 00:28:51 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2008-06-11 00:28:51 (GMT) |
commit | 363070aa463d9eed4bf815c288067a1716ef3aaa (patch) | |
tree | 7379e78d944f443b2e87936e409ef59856183cf6 /Doc | |
parent | caea65e465101554b3cf46ca107e60027f8da312 (diff) | |
download | cpython-363070aa463d9eed4bf815c288067a1716ef3aaa.zip cpython-363070aa463d9eed4bf815c288067a1716ef3aaa.tar.gz cpython-363070aa463d9eed4bf815c288067a1716ef3aaa.tar.bz2 |
Update numbers doc for the Integral simplification.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/numbers.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/library/numbers.rst b/Doc/library/numbers.rst index 37220b5..b7aafb2 100644 --- a/Doc/library/numbers.rst +++ b/Doc/library/numbers.rst @@ -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 |