summaryrefslogtreecommitdiff
path: root/Doc/library/posix.rst
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2010-10-06 10:11:56 +0000
committerGeorg Brandl <georg@python.org>2010-10-06 10:11:56 +0000
commit60203b41b03d03361754d264543d5fbe6259eb25 (patch)
tree005d0d6be6437244ae360ebc0d65fa7b149a8093 /Doc/library/posix.rst
parent64a41edb039afee683d69bd6f72e3709ff11bd93 (diff)
downloadcpython-git-60203b41b03d03361754d264543d5fbe6259eb25.tar.gz
Migrate to Sphinx 1.0 C language constructs.
Diffstat (limited to 'Doc/library/posix.rst')
-rw-r--r--Doc/library/posix.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/library/posix.rst b/Doc/library/posix.rst
index d65b999420..07db2b2af8 100644
--- a/Doc/library/posix.rst
+++ b/Doc/library/posix.rst
@@ -38,13 +38,13 @@ Large File Support
Several operating systems (including AIX, HP-UX, Irix and Solaris) provide
support for files that are larger than 2 GB from a C programming model where
-:ctype:`int` and :ctype:`long` are 32-bit values. This is typically accomplished
+:c:type:`int` and :c:type:`long` are 32-bit values. This is typically accomplished
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 :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`.
+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`.
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::