]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix the markup of the caret charater in a couple of places; LaTeX's
authorFred Drake <fdrake@acm.org>
Sat, 14 Jul 2001 03:07:55 +0000 (03:07 +0000)
committerFred Drake <fdrake@acm.org>
Sat, 14 Jul 2001 03:07:55 +0000 (03:07 +0000)
special character bite us again.  ;-(

This fixes SF bug #440911.

Doc/api/api.tex

index c153921f21d26072904c97509a48deaad03ebd16..6d8171d26732c9991536dfcf1f102d56b965248b 100644 (file)
@@ -1770,7 +1770,7 @@ Returns the ``bitwise and'' of \var{o2} and \var{o2} on success and
 \begin{cfuncdesc}{PyObject*}{PyNumber_Xor}{PyObject *o1, PyObject *o2}
 Returns the ``bitwise exclusive or'' of \var{o1} by \var{o2} on success,
 or \NULL{} on failure.  This is the equivalent of the Python
-expression \samp{\var{o1} \^{ }\var{o2}}.
+expression \samp{\var{o1} \textasciicircum{} \var{o2}}.
 \end{cfuncdesc}
 
 \begin{cfuncdesc}{PyObject*}{PyNumber_Or}{PyObject *o1, PyObject *o2}
@@ -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}