diff options
author | Fred Drake <fdrake@acm.org> | 1998-02-13 06:58:54 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1998-02-13 06:58:54 (GMT) |
commit | 1947991c2f85db781fb3fcdc9e3bcfe2905e58e2 (patch) | |
tree | 260789493c7151408f009eaa84a7815ce4d28246 /Doc/lib/libsys.tex | |
parent | dc8af0acc1fbeec89e43f1ea43bf1a4d016f4fc6 (diff) | |
download | cpython-1947991c2f85db781fb3fcdc9e3bcfe2905e58e2.zip cpython-1947991c2f85db781fb3fcdc9e3bcfe2905e58e2.tar.gz cpython-1947991c2f85db781fb3fcdc9e3bcfe2905e58e2.tar.bz2 |
Remove all \bcode / \ecode cruft; this is no longer needed. See previous
checkin of myformat.sty.
Change "\renewcommand{\indexsubitem}{(...)}" to "\setindexsubitem{(...)}"
everywhere.
Some other minor nits that I happened to come across.
Diffstat (limited to 'Doc/lib/libsys.tex')
-rw-r--r-- | Doc/lib/libsys.tex | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/Doc/lib/libsys.tex b/Doc/lib/libsys.tex index e63e616..f7bc8e2 100644 --- a/Doc/lib/libsys.tex +++ b/Doc/lib/libsys.tex @@ -6,7 +6,7 @@ This module provides access to some variables used or maintained by the interpreter and to functions that interact strongly with the interpreter. It is always available. -\renewcommand{\indexsubitem}{(in module sys)} +\setindexsubitem{(in module sys)} \begin{datadesc}{argv} The list of command line arguments passed to a Python script. @@ -81,10 +81,10 @@ installed; by default, this is also \code{"/usr/local"}. This can be set at build time with the \code{--exec-prefix} argument to the \code{configure} script. Specifically, all configuration files (e.g. the \code{config.h} header file) are installed in the directory -\code{sys.exec_prefix+"/lib/python\emph{VER}/config"}, and shared library +\code{sys.exec_prefix+"/lib/python\var{version}/config"}, and shared library modules are installed in -\code{sys.exec_prefix+"/lib/python\emph{VER}/lib-dynload"}, -where \emph{VER} is equal to \code{sys.version[:3]}. +\code{sys.exec_prefix+"/lib/python\var{version}/lib-dynload"}, +where \var{version} is equal to \code{sys.version[:3]}. \end{datadesc} \begin{funcdesc}{exit}{n} @@ -162,10 +162,10 @@ independent Python files are installed; by default, this is the string \code{"/usr/local"}. This can be set at build time with the \code{--prefix} argument to the \code{configure} script. The main collection of Python library modules is installed in the directory -\code{sys.prefix+"/lib/python\emph{VER}"} while the platform +\code{sys.prefix+"/lib/python\var{version}"} while the platform independent header files (all except \code{config.h}) are stored in -\code{sys.prefix+"/include/python\emph{VER}"}, -where \emph{VER} is equal to \code{sys.version[:3]}. +\code{sys.prefix+"/include/python\var{version}"}, +where \var{version} is equal to \code{sys.version[:3]}. \end{datadesc} |