From 35b9c24dcee74056331a4c7c8f86956b53688a85 Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Sat, 14 Jul 2001 03:07:55 +0000 Subject: [PATCH] Fix the markup of the caret charater in a couple of places; LaTeX's special character bite us again. ;-( This fixes SF bug #440911. --- Doc/api/api.tex | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Doc/api/api.tex b/Doc/api/api.tex index c153921f21d2..6d8171d26732 100644 --- a/Doc/api/api.tex +++ b/Doc/api/api.tex @@ -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} -- 2.47.3