diff options
author | Guido van Rossum <guido@python.org> | 1994-08-08 12:30:22 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1994-08-08 12:30:22 (GMT) |
commit | 16d6e7109deb1bcfd8a860cb60c16c02a0ef183b (patch) | |
tree | 81624359068cca2b8476d0894c8cd28788d0762e /Doc/libfcntl.tex | |
parent | 4b4c664d2e93279c8d749da027000453f9e2cd46 (diff) | |
download | cpython-16d6e7109deb1bcfd8a860cb60c16c02a0ef183b.zip cpython-16d6e7109deb1bcfd8a860cb60c16c02a0ef183b.tar.gz cpython-16d6e7109deb1bcfd8a860cb60c16c02a0ef183b.tar.bz2 |
Lots of small corrections by Andrew Kuchling (plus all new rotor docs)
Diffstat (limited to 'Doc/libfcntl.tex')
-rw-r--r-- | Doc/libfcntl.tex | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/libfcntl.tex b/Doc/libfcntl.tex index dd5212b..e361d5e 100644 --- a/Doc/libfcntl.tex +++ b/Doc/libfcntl.tex @@ -13,12 +13,12 @@ The module defines the following functions: \renewcommand{\indexsubitem}{(in module struct)} -\begin{funcdesc}{fcntl}{fd\, op\, arg} +\begin{funcdesc}{fcntl}{fd\, op\optional{\, arg}} Perform the requested operation on file descriptor \code{\var{fd}}. The operation is defined by \code{\var{op}} and is operating system dependent. Typically these codes can be retrieved from the library - module \code{FCNTL}. The argument \code{\var{arg}} is optional. When - it is missing it is interpreted as the integer value \code{0}. When + module \code{FCNTL}. The argument \code{\var{arg}} is optional, and + defaults to the integer value \code{0}. When it is present, it can either be an integer value, or a string. With the argument missing or an integer value, the return value of this function is the integer return value of the real \code{fcntl()} |