[Python-checkins] python/dist/src/Doc/api concrete.tex,1.18,1.19

montanaro@users.sourceforge.net montanaro@users.sourceforge.net
Sun, 02 Feb 2003 19:56:38 -0800


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

Modified Files:
	concrete.tex 
Log Message:
Add PyFloat_FromString.  Left the char **pend argument out of the
description since while there, it is useless and ignored, according to Tim's
commen.  (PyInt_FromString is also not described, but PyLong_FromString is.
Is the former deprecated?)


Index: concrete.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/api/concrete.tex,v
retrieving revision 1.18
retrieving revision 1.19
diff -C2 -d -r1.18 -r1.19
*** concrete.tex	22 Oct 2002 20:20:20 -0000	1.18
--- concrete.tex	3 Feb 2003 03:56:36 -0000	1.19
***************
*** 318,321 ****
--- 318,326 ----
  \end{cfuncdesc}
  
+ \begin{cfuncdesc}{PyObject*}{PyFloat_FromString}{PyObject *str}
+   Creates a \ctype{PyFloatObject} object based on the string value in
+   \var{str}, or \NULL{} on failure.
+ \end{cfuncdesc}
+ 
  \begin{cfuncdesc}{PyObject*}{PyFloat_FromDouble}{double v}
    Creates a \ctype{PyFloatObject} object from \var{v}, or \NULL{} on