Commit 82a803e5 authored by Guido van Rossum's avatar Guido van Rossum

Protect '&' signs with '\' in description of PyNumber_Coerce.

parent c49a279c
...@@ -366,7 +366,7 @@ From the viewpoint of of C access to Python services, we have: ...@@ -366,7 +366,7 @@ From the viewpoint of of C access to Python services, we have:
reference counts), and return 0. reference counts), and return 0.
If no conversion is possible, or if some other error occurs, If no conversion is possible, or if some other error occurs,
return -1 (failure) and don't increment the reference counts. 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)}. statement \code{o1, o2 = coerce(o1, o2)}.
\end{cfuncdesc} \end{cfuncdesc}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment