diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2009-01-17 10:21:23 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2009-01-17 10:21:23 (GMT) |
commit | bf5c6a97f80acd4eb785250de8053efad51732ee (patch) | |
tree | ef345debda3189641642b7cadc173931898ad688 /Doc/library | |
parent | 8055afd0197862a3358fb219f5bb60233288fe02 (diff) | |
download | cpython-bf5c6a97f80acd4eb785250de8053efad51732ee.zip cpython-bf5c6a97f80acd4eb785250de8053efad51732ee.tar.gz cpython-bf5c6a97f80acd4eb785250de8053efad51732ee.tar.bz2 |
Fix a few more references to long integers in the docs.
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/math.rst | 2 | ||||
-rw-r--r-- | Doc/library/reprlib.rst | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/math.rst b/Doc/library/math.rst index f171ec1..ab39424 100644 --- a/Doc/library/math.rst +++ b/Doc/library/math.rst @@ -118,7 +118,7 @@ Number-theoretic and representation functions .. function:: trunc(x) Return the :class:`Real` value *x* truncated to an :class:`Integral` (usually - a long integer). Delegates to ``x.__trunc__()``. + an integer). Delegates to ``x.__trunc__()``. Note that :func:`frexp` and :func:`modf` have a different call/return pattern diff --git a/Doc/library/reprlib.rst b/Doc/library/reprlib.rst index c1364a3..0da29fc 100644 --- a/Doc/library/reprlib.rst +++ b/Doc/library/reprlib.rst @@ -65,7 +65,7 @@ which format specific object types. .. attribute:: Repr.maxlong - Maximum number of characters in the representation for a long integer. Digits + Maximum number of characters in the representation for an integer. Digits are dropped from the middle. The default is ``40``. |