Fix casing of function names.

This commit is contained in:
Georg Brandl 2006-02-22 11:46:55 +00:00
parent 418a1ef089
commit b518d8c7d7

View File

@ -3005,9 +3005,9 @@ either the abstract object protocol (including
or the abstract number protocol (including or the abstract number protocol (including
\cfunction{PyNumber_Add()}, \cfunction{PyNumber_Subtract()}, \cfunction{PyNumber_Add()}, \cfunction{PyNumber_Subtract()},
\cfunction{PyNumber_Or()}, \cfunction{PyNumber_Xor()}, \cfunction{PyNumber_Or()}, \cfunction{PyNumber_Xor()},
\cfunction{PyNumber_InplaceAdd()}, \cfunction{PyNumber_InplaceSubtract()}, \cfunction{PyNumber_InPlaceAdd()}, \cfunction{PyNumber_InPlaceSubtract()},
\cfunction{PyNumber_InplaceOr()}, and \cfunction{PyNumber_InplaceXor()}). \cfunction{PyNumber_InPlaceOr()}, and \cfunction{PyNumber_InPlaceXor()}).
Note, \cfunction{PyNumber_InplaceSubtract()} is also useful clearing Note, \cfunction{PyNumber_InPlaceSubtract()} is also useful clearing
clearing a set (\code{s-=s}). clearing a set (\code{s-=s}).
\begin{ctypedesc}{PySetObject} \begin{ctypedesc}{PySetObject}