diff options
author | Georg Brandl <georg@python.org> | 2007-11-29 17:41:05 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2007-11-29 17:41:05 (GMT) |
commit | 5c10664043448f1d27d7ce7eb67c2afe3f54b018 (patch) | |
tree | a5b3ada6978c46dc179e97011c02031bb4e9344e /Doc/library/posix.rst | |
parent | ba956aebb96c38f1b8818189ed6ab18d5441313a (diff) | |
download | cpython-5c10664043448f1d27d7ce7eb67c2afe3f54b018.zip cpython-5c10664043448f1d27d7ce7eb67c2afe3f54b018.tar.gz cpython-5c10664043448f1d27d7ce7eb67c2afe3f54b018.tar.bz2 |
Remove further mentions of long integers.
Diffstat (limited to 'Doc/library/posix.rst')
-rw-r--r-- | Doc/library/posix.rst | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Doc/library/posix.rst b/Doc/library/posix.rst index 2074e45..a845e35 100644 --- a/Doc/library/posix.rst +++ b/Doc/library/posix.rst @@ -51,8 +51,7 @@ sometimes referred to as :dfn:`large files`. Large file support is enabled in Python when the size of an :ctype:`off_t` is larger than a :ctype:`long` and the :ctype:`long long` type is available and is -at least as large as an :ctype:`off_t`. Python longs are then used to represent -file sizes, offsets and other values that can exceed the range of a Python int. +at least as large as an :ctype:`off_t`. It may be necessary to configure and compile Python with certain compiler flags to enable this mode. For example, it is enabled by default with recent versions of Irix, but with Solaris 2.6 and 2.7 you need to do something like:: |