From: Guido van Rossum Date: Fri, 27 Sep 1996 17:28:03 +0000 (+0000) Subject: Protect '&' signs with '\' in description of PyNumber_Coerce. X-Git-Tag: v1.4~165 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e86cbc43f2ff8f278e44614de10090a410294e89;p=thirdparty%2FPython%2Fcpython.git Protect '&' signs with '\' in description of PyNumber_Coerce. --- diff --git a/Doc/extref.tex b/Doc/extref.tex index 75485c629029..d93eb166bc65 100644 --- a/Doc/extref.tex +++ b/Doc/extref.tex @@ -366,7 +366,7 @@ From the viewpoint of of C access to Python services, we have: reference counts), and return 0. If no conversion is possible, or if some other error occurs, return -1 (failure) and don't increment the reference counts. - The call \code{PyNumber_Coerce(&o1, &o2)} is equivalent to the Python + The call \code{PyNumber_Coerce(\&o1, \&o2)} is equivalent to the Python statement \code{o1, o2 = coerce(o1, o2)}. \end{cfuncdesc}