summaryrefslogtreecommitdiffstats
path: root/Doc/extref.tex
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1996-09-27 17:28:03 (GMT)
committerGuido van Rossum <guido@python.org>1996-09-27 17:28:03 (GMT)
commite86cbc43f2ff8f278e44614de10090a410294e89 (patch)
tree5d0a19de2b12e0655a6fd5eee7ab74a431f005b9 /Doc/extref.tex
parent3f247ade66af916cbb77db6b3753dab3a52f686e (diff)
downloadcpython-e86cbc43f2ff8f278e44614de10090a410294e89.zip
cpython-e86cbc43f2ff8f278e44614de10090a410294e89.tar.gz
cpython-e86cbc43f2ff8f278e44614de10090a410294e89.tar.bz2
Protect '&' signs with '\' in description of PyNumber_Coerce.
Diffstat (limited to 'Doc/extref.tex')
-rw-r--r--Doc/extref.tex2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/extref.tex b/Doc/extref.tex
index 75485c6..d93eb16 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}