diff options
author | Raymond Hettinger <python@rcn.com> | 2006-11-23 21:06:03 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2006-11-23 21:06:03 (GMT) |
commit | a912c6c8916d0f8051bf40c5358322b8e0415c9f (patch) | |
tree | 6f749779d624b5776f21e334918f6b1e161e9e2d /Doc | |
parent | f39044213058a354db11b9b44ff0addf81a4bbd4 (diff) | |
download | cpython-a912c6c8916d0f8051bf40c5358322b8e0415c9f.zip cpython-a912c6c8916d0f8051bf40c5358322b8e0415c9f.tar.gz cpython-a912c6c8916d0f8051bf40c5358322b8e0415c9f.tar.bz2 |
Fix and/add typo
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/api/concrete.tex | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/api/concrete.tex b/Doc/api/concrete.tex index 97ef134..33b04d4 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} |