diff options
author | Georg Brandl <georg@python.org> | 2007-11-29 17:24:34 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2007-11-29 17:24:34 (GMT) |
commit | ba956aebb96c38f1b8818189ed6ab18d5441313a (patch) | |
tree | 8cd8aba4cf4559f7e8e2086ea9ad05b4be91187f /Doc/library/array.rst | |
parent | 0db38532b304c89a998e4fc53b3ac8cd7ff23a8a (diff) | |
download | cpython-ba956aebb96c38f1b8818189ed6ab18d5441313a.zip cpython-ba956aebb96c38f1b8818189ed6ab18d5441313a.tar.gz cpython-ba956aebb96c38f1b8818189ed6ab18d5441313a.tar.bz2 |
Remove mentions of "long integer" in the docs.
Credits to HappySmileMan from GHOP.
Diffstat (limited to 'Doc/library/array.rst')
-rw-r--r-- | Doc/library/array.rst | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/Doc/library/array.rst b/Doc/library/array.rst index 4747b63..e86d0cc 100644 --- a/Doc/library/array.rst +++ b/Doc/library/array.rst @@ -45,10 +45,7 @@ defined: The actual representation of values is determined by the machine architecture (strictly speaking, by the C implementation). The actual size can be accessed -through the :attr:`itemsize` attribute. The values stored for ``'L'`` and -``'I'`` items will be represented as Python long integers when retrieved, -because Python's plain integer type cannot represent the full range of C's -unsigned (long) integers. +through the :attr:`itemsize` attribute. The module defines the following type: |