summaryrefslogtreecommitdiff
path: root/Include/floatobject.h
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>1999-10-12 19:54:53 +0000
committerBarry Warsaw <barry@python.org>1999-10-12 19:54:53 +0000
commit226ae6ca122f814dabdc40178c7b9656caf729c2 (patch)
treeabaa15aae569a2334c7516b50ea486ec40bfce66 /Include/floatobject.h
parent75260275fe3bcc5d177a1b3ff30fd60681809585 (diff)
downloadcpython-git-226ae6ca122f814dabdc40178c7b9656caf729c2.tar.gz
Mainlining the string_methods branch. See branch revision log
messages for specific changes.
Diffstat (limited to 'Include/floatobject.h')
-rw-r--r--Include/floatobject.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Include/floatobject.h b/Include/floatobject.h
index 4491f592a6..d8fd376727 100644
--- a/Include/floatobject.h
+++ b/Include/floatobject.h
@@ -50,6 +50,7 @@ extern DL_IMPORT(PyTypeObject) PyFloat_Type;
#define PyFloat_Check(op) ((op)->ob_type == &PyFloat_Type)
+extern DL_IMPORT(PyObject *) PyFloat_FromString Py_PROTO((PyObject*, char**));
extern DL_IMPORT(PyObject *) PyFloat_FromDouble Py_PROTO((double));
extern DL_IMPORT(double) PyFloat_AsDouble Py_PROTO((PyObject *));