bpo-27961: Remove leftovers from the times when long long wasn't required (GH-15388)

This commit is contained in:
Sergey Fedoseev 2019-08-22 20:28:28 +05:00 committed by Pablo Galindo
parent c4106af38b
commit a38e9d1399
5 changed files with 26 additions and 38 deletions

View file

@ -44,8 +44,8 @@ by defining the relevant size and offset types as 64-bit values. Such files are
sometimes referred to as :dfn:`large files`.
Large file support is enabled in Python when the size of an :c:type:`off_t` is
larger than a :c:type:`long` and the :c:type:`long long` type is available and is
at least as large as an :c:type:`off_t`.
larger than a :c:type:`long` and the :c:type:`long long` is at least as large
as an :c:type:`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::