diff options
author | Georg Brandl <georg@python.org> | 2007-03-18 18:35:15 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2007-03-18 18:35:15 (GMT) |
commit | 428f0641ec34902b0cce2cfdca833c79e6fdab7c (patch) | |
tree | 24f29c55a16cb1377b721253ec847c1885c70edb /Doc/api/concrete.tex | |
parent | 9091e3a423b1f7a21b1b191c65381abcb5702ab6 (diff) | |
download | cpython-428f0641ec34902b0cce2cfdca833c79e6fdab7c.zip cpython-428f0641ec34902b0cce2cfdca833c79e6fdab7c.tar.gz cpython-428f0641ec34902b0cce2cfdca833c79e6fdab7c.tar.bz2 |
Remove the deprecated and useless "pend" argument from
PyFloat_FromString. (fixes bug #1650903)
Diffstat (limited to 'Doc/api/concrete.tex')
-rw-r--r-- | Doc/api/concrete.tex | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Doc/api/concrete.tex b/Doc/api/concrete.tex index e2d3e52..630a726 100644 --- a/Doc/api/concrete.tex +++ b/Doc/api/concrete.tex @@ -430,10 +430,9 @@ booleans. The following macros are available, however. \versionadded{2.2} \end{cfuncdesc} -\begin{cfuncdesc}{PyObject*}{PyFloat_FromString}{PyObject *str, char **pend} +\begin{cfuncdesc}{PyObject*}{PyFloat_FromString}{PyObject *str} Create a \ctype{PyFloatObject} object based on the string value in - \var{str}, or \NULL{} on failure. The \var{pend} argument is ignored. It - remains only for backward compatibility. + \var{str}, or \NULL{} on failure. \end{cfuncdesc} \begin{cfuncdesc}{PyObject*}{PyFloat_FromDouble}{double v} |