summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2008-06-11 00:28:51 (GMT)
committerRaymond Hettinger <python@rcn.com>2008-06-11 00:28:51 (GMT)
commit363070aa463d9eed4bf815c288067a1716ef3aaa (patch)
tree7379e78d944f443b2e87936e409ef59856183cf6 /Doc
parentcaea65e465101554b3cf46ca107e60027f8da312 (diff)
downloadcpython-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.rst8
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