From: Raymond Hettinger Date: Thu, 23 Nov 2006 21:06:03 +0000 (+0000) Subject: Fix and/add typo X-Git-Tag: v2.6a1~2406 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a912c6c8916d0f8051bf40c5358322b8e0415c9f;p=thirdparty%2FPython%2Fcpython.git Fix and/add typo --- diff --git a/Doc/api/concrete.tex b/Doc/api/concrete.tex index 97ef1341ec42..33b04d486161 100644 --- a/Doc/api/concrete.tex +++ b/Doc/api/concrete.tex @@ -3080,9 +3080,9 @@ either the abstract object protocol (including \cfunction{PyObject_IsTrue()}, \cfunction{PyObject_Print()}, and \cfunction{PyObject_GetIter()}) or the abstract number protocol (including -\cfunction{PyNumber_Add()}, \cfunction{PyNumber_Subtract()}, +\cfunction{PyNumber_And()}, \cfunction{PyNumber_Subtract()}, \cfunction{PyNumber_Or()}, \cfunction{PyNumber_Xor()}, -\cfunction{PyNumber_InPlaceAdd()}, \cfunction{PyNumber_InPlaceSubtract()}, +\cfunction{PyNumber_InPlaceAnd()}, \cfunction{PyNumber_InPlaceSubtract()}, \cfunction{PyNumber_InPlaceOr()}, and \cfunction{PyNumber_InPlaceXor()}). \begin{ctypedesc}{PySetObject}