Kaydet (Commit) e86cbc43 authored tarafından Guido van Rossum's avatar Guido van Rossum

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

üst 3f247ade
......@@ -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}
......
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