@@ -83,7 +83,7 @@ \section{Built-in Module \sectcode{sys}}
8383(e.g. the \code {config.h} header file) are installed in the directory
8484\code {sys.exec_prefix+"/lib/python\emph {VER }/config"}, and shared library
8585modules are installed in
86- \code {sys.exec_prefix+"/lib/python\emph {VER }/sharedmodules "},
86+ \code {sys.exec_prefix+"/lib/python\emph {VER }/lib-dynload "},
8787where \emph {VER } is equal to \code {sys.version[:3]}.
8888\end {datadesc }
8989
@@ -115,7 +115,7 @@ \section{Built-in Module \sectcode{sys}}
115115(Typical use is \code {import pdb; pdb.pm()} to enter the post-mortem
116116debugger; see the chapter `` The Python Debugger'' for more
117117information.)
118- \stmodindex {pdb}
118+ \refstmodindex {pdb}
119119
120120The meaning of the variables is the same
121121as that of the return values from \code {sys.exc_info()} above.
@@ -139,7 +139,7 @@ \section{Built-in Module \sectcode{sys}}
139139interpreter is invoked interactively or if the script is read from
140140standard input), \code {sys.path[0]} is the empty string, which directs
141141Python to search modules in the current directory first. Notice that
142- the script directory is inserted { \em before} the entries inserted as
142+ the script directory is inserted \emph { before } the entries inserted as
143143a result of \code {\$ PYTHONPATH}.
144144\end {datadesc }
145145
@@ -215,11 +215,11 @@ \section{Built-in Module \sectcode{sys}}
215215 own prompts and (almost all of) its error messages go to
216216 \code {sys.stderr}. \code {sys.stdout} and \code {sys.stderr} needn't
217217 be built-in file objects: any object is acceptable as long as it has
218- a \code {write} method that takes a string argument. (Changing these
218+ a \code {write() } method that takes a string argument. (Changing these
219219 objects doesn't affect the standard I/O streams of processes
220220 executed by \code {popen()}, \code {system()} or the \code {exec*()}
221221 family of functions in the \code {os} module.)
222- \stmodindex {os}
222+ \refstmodindex {os}
223223\end {datadesc }
224224
225225\begin {datadesc }{tracebacklimit}
0 commit comments