mirror of https://github.com/python/cpython
parent
3dd264cc0f
commit
efc1e0f43b
|
@ -24,10 +24,10 @@ systems as well. Here's an overview:
|
|||
--- Standard errno system symbols.
|
||||
|
||||
\item[glob]
|
||||
--- Unix shell style pathname pattern expansion.
|
||||
--- \UNIX{} shell style pathname pattern expansion.
|
||||
|
||||
\item[fnmatch]
|
||||
--- Unix shell style pathname pattern matching.
|
||||
--- \UNIX{} shell style pathname pattern matching.
|
||||
|
||||
\item[locale]
|
||||
--- Internationalization services.
|
||||
|
|
|
@ -263,7 +263,7 @@ system administrator to find the directory where CGI scripts should be
|
|||
installed; usually this is in a directory \file{cgi-bin} in the server tree.
|
||||
|
||||
Make sure that your script is readable and executable by ``others''; the
|
||||
Unix file mode should be 755 (use \code{chmod 755 filename}). Make sure
|
||||
\UNIX{} file mode should be 755 (use \code{chmod 755 filename}). Make sure
|
||||
that the first line of the script contains \code{\#!} starting in column 1
|
||||
followed by the pathname of the Python interpreter, for instance:
|
||||
|
||||
|
@ -297,7 +297,7 @@ sys.path.insert(0, "/usr/local/lib/python")
|
|||
%
|
||||
(This way, the directory inserted last will be searched first!)
|
||||
|
||||
Instructions for non-Unix systems will vary; check your HTTP server's
|
||||
Instructions for non-\UNIX{} systems will vary; check your HTTP server's
|
||||
documentation (it will usually have a section on CGI scripts).
|
||||
|
||||
|
||||
|
|
|
@ -38,13 +38,13 @@ The module defines the following functions:
|
|||
|
||||
\begin{funcdesc}{flock}{fd\, op}
|
||||
Perform the lock operation \var{op} on file descriptor \var{fd}.
|
||||
See the Unix manual for details. (On some systems, this function is
|
||||
emulated using \code{fcntl}.)
|
||||
See the \UNIX{} manual for details. (On some systems, this function is
|
||||
emulated using \code{fcntl()}.)
|
||||
\end{funcdesc}
|
||||
|
||||
\begin{funcdesc}{lockf}{fd\, code\, \optional{len\, \optional{start\, \optional{whence}}}}
|
||||
This is a wrapper around the \code{F_SETLK} and \code{F_SETLKW}
|
||||
\code{fcntl()} calls. See the Unix manual for details.
|
||||
\code{fcntl()} calls. See the \UNIX{} manual for details.
|
||||
\end{funcdesc}
|
||||
|
||||
If the library modules \code{FCNTL} or \code{IOCTL} are missing, you
|
||||
|
|
|
@ -24,10 +24,10 @@ systems as well. Here's an overview:
|
|||
--- Standard errno system symbols.
|
||||
|
||||
\item[glob]
|
||||
--- Unix shell style pathname pattern expansion.
|
||||
--- \UNIX{} shell style pathname pattern expansion.
|
||||
|
||||
\item[fnmatch]
|
||||
--- Unix shell style pathname pattern matching.
|
||||
--- \UNIX{} shell style pathname pattern matching.
|
||||
|
||||
\item[locale]
|
||||
--- Internationalization services.
|
||||
|
|
|
@ -263,7 +263,7 @@ system administrator to find the directory where CGI scripts should be
|
|||
installed; usually this is in a directory \file{cgi-bin} in the server tree.
|
||||
|
||||
Make sure that your script is readable and executable by ``others''; the
|
||||
Unix file mode should be 755 (use \code{chmod 755 filename}). Make sure
|
||||
\UNIX{} file mode should be 755 (use \code{chmod 755 filename}). Make sure
|
||||
that the first line of the script contains \code{\#!} starting in column 1
|
||||
followed by the pathname of the Python interpreter, for instance:
|
||||
|
||||
|
@ -297,7 +297,7 @@ sys.path.insert(0, "/usr/local/lib/python")
|
|||
%
|
||||
(This way, the directory inserted last will be searched first!)
|
||||
|
||||
Instructions for non-Unix systems will vary; check your HTTP server's
|
||||
Instructions for non-\UNIX{} systems will vary; check your HTTP server's
|
||||
documentation (it will usually have a section on CGI scripts).
|
||||
|
||||
|
||||
|
|
|
@ -38,13 +38,13 @@ The module defines the following functions:
|
|||
|
||||
\begin{funcdesc}{flock}{fd\, op}
|
||||
Perform the lock operation \var{op} on file descriptor \var{fd}.
|
||||
See the Unix manual for details. (On some systems, this function is
|
||||
emulated using \code{fcntl}.)
|
||||
See the \UNIX{} manual for details. (On some systems, this function is
|
||||
emulated using \code{fcntl()}.)
|
||||
\end{funcdesc}
|
||||
|
||||
\begin{funcdesc}{lockf}{fd\, code\, \optional{len\, \optional{start\, \optional{whence}}}}
|
||||
This is a wrapper around the \code{F_SETLK} and \code{F_SETLKW}
|
||||
\code{fcntl()} calls. See the Unix manual for details.
|
||||
\code{fcntl()} calls. See the \UNIX{} manual for details.
|
||||
\end{funcdesc}
|
||||
|
||||
If the library modules \code{FCNTL} or \code{IOCTL} are missing, you
|
||||
|
|
Loading…
Reference in New Issue