diff options
author | Guido van Rossum <guido@python.org> | 1999-01-22 20:10:49 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1999-01-22 20:10:49 (GMT) |
commit | d1dbf633ed3a3ed4d7e2697198620b7b099821cc (patch) | |
tree | df4906a6c9f949da731236d0ba09289c29f4cdd3 | |
parent | 539d4256b09edf807ae3f27be913351e2ef68510 (diff) | |
download | cpython-d1dbf633ed3a3ed4d7e2697198620b7b099821cc.zip cpython-d1dbf633ed3a3ed4d7e2697198620b7b099821cc.tar.gz cpython-d1dbf633ed3a3ed4d7e2697198620b7b099821cc.tar.bz2 |
Header for PyObject_DelItem() mentioned non-existing 3rd argument.
-rw-r--r-- | Doc/api/api.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/api/api.tex b/Doc/api/api.tex index 95b3158..1951a98 100644 --- a/Doc/api/api.tex +++ b/Doc/api/api.tex @@ -1268,7 +1268,7 @@ of the Python statement \samp{\var{o}[\var{key}] = \var{v}}. \end{cfuncdesc} -\begin{cfuncdesc}{int}{PyObject_DelItem}{PyObject *o, PyObject *key, PyObject *v} +\begin{cfuncdesc}{int}{PyObject_DelItem}{PyObject *o, PyObject *key} Delete the mapping for \var{key} from \var{o}. Returns \code{-1} on failure. This is the equivalent of the Python statement \samp{del \var{o}[\var{key}]}. |