Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 268df27

Browse files
committed
Use the new markup as apporpriate.
1 parent 6e9ea59 commit 268df27

1 file changed

Lines changed: 17 additions & 17 deletions

File tree

Doc/lib/libsys.tex

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ \section{\module{sys} ---
1313
The list of command line arguments passed to a Python script.
1414
\code{argv[0]} is the script name (it is operating system
1515
dependent whether this is a full pathname or not).
16-
If the command was executed using the \samp{-c} command line option
17-
to the interpreter, \code{argv[0]} is set to the string
16+
If the command was executed using the \programopt{-c} command line
17+
option to the interpreter, \code{argv[0]} is set to the string
1818
\code{'-c'}.
1919
If no script name was passed to the Python interpreter,
2020
\code{argv} has zero length.
@@ -81,16 +81,16 @@ \section{\module{sys} ---
8181
\end{datadesc}
8282

8383
\begin{datadesc}{exec_prefix}
84-
A string giving the site-specific
85-
directory prefix where the platform-dependent Python files are
86-
installed; by default, this is also \code{'/usr/local'}. This can be
87-
set at build time with the \code{-}\code{-exec-prefix} argument to the
84+
A string giving the site-specific directory prefix where the
85+
platform-dependent Python files are installed; by default, this is
86+
also \code{'/usr/local'}. This can be set at build time with the
87+
\programopt{-}\programopt{-exec-prefix} argument to the
8888
\program{configure} script. Specifically, all configuration files
8989
(e.g. the \file{config.h} header file) are installed in the directory
90-
\code{exec_prefix + '/lib/python\var{version}/config'}, and shared library
91-
modules are installed in
92-
\code{exec_prefix + '/lib/python\var{version}/lib-dynload'},
93-
where \var{version} is equal to \code{version[:3]}.
90+
\code{exec_prefix + '/lib/python\var{version}/config'}, and shared
91+
library modules are installed in \code{exec_prefix +
92+
'/lib/python\var{version}/lib-dynload'}, where \var{version} is equal
93+
to \code{version[:3]}.
9494
\end{datadesc}
9595

9696
\begin{datadesc}{executable}
@@ -194,13 +194,13 @@ \section{\module{sys} ---
194194
A string giving the site-specific directory prefix where the platform
195195
independent Python files are installed; by default, this is the string
196196
\code{'/usr/local'}. This can be set at build time with the
197-
\code{-}\code{-prefix} argument to the \program{configure} script. The main
198-
collection of Python library modules is installed in the directory
199-
\code{prefix + '/lib/python\var{version}'} while the platform
200-
independent header files (all except \file{config.h}) are stored in
201-
\code{prefix + '/include/python\var{version}'},
202-
where \var{version} is equal to \code{version[:3]}.
203-
197+
\programopt{-}\programopt{-prefix} argument to the
198+
\program{configure} script. The main collection of Python library
199+
modules is installed in the directory \code{prefix +
200+
'/lib/python\var{version}'} while the platform independent header
201+
files (all except \file{config.h}) are stored in \code{prefix +
202+
'/include/python\var{version}'}, where \var{version} is equal to
203+
\code{version[:3]}.
204204
\end{datadesc}
205205

206206
\begin{datadesc}{ps1}

0 commit comments

Comments
 (0)