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

Fred L. Drake fdrake@users.sourceforge.net
Thu, 06 Dec 2001 12:37:01 -0800


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

Modified Files:
	concrete.tex 
Log Message:
Document that PyString_FromString() cannot take NULL as a parameter.
This closes SF bug #489872.


Index: concrete.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/api/concrete.tex,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** concrete.tex	2001/11/29 22:42:59	1.3
--- concrete.tex	2001/12/06 20:36:59	1.4
***************
*** 464,468 ****
  \begin{cfuncdesc}{PyObject*}{PyString_FromString}{const char *v}
    Returns a new string object with the value \var{v} on success, and
!   \NULL{} on failure.
  \end{cfuncdesc}
  
--- 464,469 ----
  \begin{cfuncdesc}{PyObject*}{PyString_FromString}{const char *v}
    Returns a new string object with the value \var{v} on success, and
!   \NULL{} on failure.  The parameter \var{v} must not be \NULL; it
!   will not be checked.
  \end{cfuncdesc}