add missing return value info for PyDict_DelItem

This commit is contained in:
Skip Montanaro 2002-01-23 08:18:30 +00:00
parent d91b0d6a65
commit a23bc42ad5
1 changed files with 1 additions and 1 deletions

View File

@ -1727,7 +1727,7 @@ format.
\begin{cfuncdesc}{int}{PyDict_DelItem}{PyObject *p, PyObject *key}
Removes the entry in dictionary \var{p} with key \var{key}.
\var{key} must be hashable; if it isn't, \exception{TypeError} is
raised.
raised. Returns \code{0} on success or \code{-1} on failure.
\end{cfuncdesc}
\begin{cfuncdesc}{int}{PyDict_DelItemString}{PyObject *p, char *key}