summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2001-07-14 03:01:48 (GMT)
committerFred Drake <fdrake@acm.org>2001-07-14 03:01:48 (GMT)
commit377fb1e1f674b90e9e0b171455ef081713e36298 (patch)
tree89d4ef8d44b8a76fded44f70e19b0355395370fc /Doc
parent8ee679f0ce8b14a5ff9de397280b63db6e142d6d (diff)
downloadcpython-377fb1e1f674b90e9e0b171455ef081713e36298.zip
cpython-377fb1e1f674b90e9e0b171455ef081713e36298.tar.gz
cpython-377fb1e1f674b90e9e0b171455ef081713e36298.tar.bz2
Fix the markup of the caret charater in a couple of places; LaTeX's
special character bite us again. ;-( This fixes SF bug #440911.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/api/api.tex4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/api/api.tex b/Doc/api/api.tex
index 69f0dc0..52881f8 100644
--- a/Doc/api/api.tex
+++ b/Doc/api/api.tex
@@ -1135,7 +1135,7 @@ The functions in this chapter perform various utility tasks, such as
parsing function arguments and constructing Python values from C
values.
-\section{OS Utilities \label{os}}
+\section{Operating System Utilities \label{os}}
\begin{cfuncdesc}{int}{Py_FdIsInteractive}{FILE *fp, char *filename}
Return true (nonzero) if the standard I/O file \var{fp} with name
@@ -1854,7 +1854,7 @@ and \NULL{} on failure. The operation is done \emph{in-place} when
Returns the ``bitwise exclusive or'' of \var{o1} by \var{o2} on success, or
\NULL{} on failure. The operation is done \emph{in-place} when \var{o1}
supports it. This is the equivalent of the Python expression \samp{\var{o1}
-\^= \var{o2}}.
+\textasciicircum= \var{o2}}.
\end{cfuncdesc}
\begin{cfuncdesc}{PyObject*}{PyNumber_InPlaceOr}{PyObject *o1, PyObject *o2}