diff options
author | Brett Cannon <bcannon@gmail.com> | 2003-09-07 02:22:16 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2003-09-07 02:22:16 (GMT) |
commit | 77e0212b8aabd018c455a5727993e148a49a9699 (patch) | |
tree | fb544dc226d7dec229d387fdfe683677dba5cfe8 /Doc/api | |
parent | 3f7a94824e502d4a66acb930fbfeb559392dd3d1 (diff) | |
download | cpython-77e0212b8aabd018c455a5727993e148a49a9699.zip cpython-77e0212b8aabd018c455a5727993e148a49a9699.tar.gz cpython-77e0212b8aabd018c455a5727993e148a49a9699.tar.bz2 |
Fix minor LaTeX bug of not ending a \NULL{} with the curly braces to get the
spacing correct in the output.
Diffstat (limited to 'Doc/api')
-rw-r--r-- | Doc/api/abstract.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/api/abstract.tex b/Doc/api/abstract.tex index 977a17a..c5aee66 100644 --- a/Doc/api/abstract.tex +++ b/Doc/api/abstract.tex @@ -831,7 +831,7 @@ determination. \end{cfuncdesc} \begin{cfuncdesc}{PyObject*}{PySequence_ITEM}{PyObject *o, int i} - Return the \var{i}th element of \var{o} or \NULL on failure. + Return the \var{i}th element of \var{o} or \NULL{} on failure. Macro form of \cfunction{PySequence_GetItem()} but without checking that \cfunction{PySequence_Check(\var{o})} is true and without adjustment for negative indices. |