diff options
author | Fred Drake <fdrake@acm.org> | 1998-01-14 14:51:31 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1998-01-14 14:51:31 (GMT) |
commit | af8a015c937d11e4efcda3f91344ad3e758d26e8 (patch) | |
tree | 5e342ee84e829d81f408c1c990b66762ee034da3 /Doc/ext | |
parent | b215137224cafcdb665a7b298dbf02be6a214d0c (diff) | |
download | cpython-af8a015c937d11e4efcda3f91344ad3e758d26e8.zip cpython-af8a015c937d11e4efcda3f91344ad3e758d26e8.tar.gz cpython-af8a015c937d11e4efcda3f91344ad3e758d26e8.tar.bz2 |
Consistency: "{\bf ...}" ==> "\strong{...}"
"{\em ...}" ==> "\emph{...}"
Not at all sure what to do with "{\rm ...}".
Leaving it for now.
Diffstat (limited to 'Doc/ext')
-rw-r--r-- | Doc/ext/ext.tex | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/Doc/ext/ext.tex b/Doc/ext/ext.tex index 911b824..71343a5 100644 --- a/Doc/ext/ext.tex +++ b/Doc/ext/ext.tex @@ -1303,9 +1303,10 @@ contain the options \samp{-I\$(PYTHONTOP) -I\$(PYTHONTOP)/Include}. \subsection{Shared Libraries} -You must link the \samp{.o} file to produce a shared library. This is -done using a special invocation of the \UNIX{} loader/linker, {\em -ld}(1). Unfortunately the invocation differs slightly per system. +You must link the \file{.o} file to produce a shared library. This is +done using a special invocation of the \UNIX{} loader/linker, +\emph{ld}(1). Unfortunately the invocation differs slightly per +system. On SunOS 4, use \bcode\begin{verbatim} @@ -1336,7 +1337,7 @@ along the Python module search path. \subsection{SGI IRIX 4 Dynamic Loading} -{\bf IMPORTANT:} You must compile your extension module with the +\strong{IMPORTANT:} You must compile your extension module with the additional \C{} flag \samp{-G0} (or \samp{-G 0}). This instruct the assembler to generate position-independent code. |