[Python-checkins] CVS: python/dist/src/Doc/api concrete.tex,1.6,1.7

Skip Montanaro montanaro@users.sourceforge.net
Wed, 23 Jan 2002 00:18:32 -0800


Update of /cvsroot/python/python/dist/src/Doc/api
In directory usw-pr-cvs1:/tmp/cvs-serv6575

Modified Files:
	concrete.tex 
Log Message:
add missing return value info for PyDict_DelItem


Index: concrete.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/api/concrete.tex,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** concrete.tex	2001/12/11 19:40:16	1.6
--- concrete.tex	2002/01/23 08:18:30	1.7
***************
*** 1728,1732 ****
    Removes the entry in dictionary \var{p} with key \var{key}.
    \var{key} must be hashable; if it isn't, \exception{TypeError} is
!   raised.
  \end{cfuncdesc}
  
--- 1728,1732 ----
    Removes the entry in dictionary \var{p} with key \var{key}.
    \var{key} must be hashable; if it isn't, \exception{TypeError} is
!   raised.  Returns \code{0} on success or \code{-1} on failure.
  \end{cfuncdesc}