mirror of
https://github.com/python/cpython.git
synced 2025-07-24 03:35:53 +00:00
add missing return value info for PyDict_DelItem
This commit is contained in:
parent
d91b0d6a65
commit
a23bc42ad5
1 changed files with 1 additions and 1 deletions
|
@ -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}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue