]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Header for PyObject_DelItem() mentioned non-existing 3rd argument.
authorGuido van Rossum <guido@python.org>
Fri, 22 Jan 1999 20:10:49 +0000 (20:10 +0000)
committerGuido van Rossum <guido@python.org>
Fri, 22 Jan 1999 20:10:49 +0000 (20:10 +0000)
Doc/api/api.tex

index 95b31587bd72d21180939367c05aa3c491a52414..1951a98524b4526550b9fa37e3ad6a1e93271296 100644 (file)
@@ -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}]}.