Header for PyObject_DelItem() mentioned non-existing 3rd argument.

This commit is contained in:
Guido van Rossum 1999-01-22 20:10:49 +00:00
parent 539d4256b0
commit d1dbf633ed
1 changed files with 1 additions and 1 deletions

View 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}]}.