diff options
author | Skip Montanaro <skip@pobox.com> | 2002-01-23 08:18:30 (GMT) |
---|---|---|
committer | Skip Montanaro <skip@pobox.com> | 2002-01-23 08:18:30 (GMT) |
commit | a23bc42ad5ad1b81a7c6342cc93a7a07eb072f48 (patch) | |
tree | 3ccc2c5531ca6d3b78462b3defa5cc0f167ab689 /Doc | |
parent | d91b0d6a65a0b6d0935a4e3ea131fa78c43a690d (diff) | |
download | cpython-a23bc42ad5ad1b81a7c6342cc93a7a07eb072f48.zip cpython-a23bc42ad5ad1b81a7c6342cc93a7a07eb072f48.tar.gz cpython-a23bc42ad5ad1b81a7c6342cc93a7a07eb072f48.tar.bz2 |
add missing return value info for PyDict_DelItem
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/api/concrete.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/api/concrete.tex b/Doc/api/concrete.tex index 13f1f0a..5c71b3a 100644 --- a/Doc/api/concrete.tex +++ b/Doc/api/concrete.tex @@ -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} |