Update mojo sdk to rev 1dc8a9a5db73d3718d99917fadf31f5fb2ebad4f
[chromium-blink-merge.git] / third_party / cython / src / Cython / Includes / cpython / float.pxd
blob65328f31ea488ca0ed799406e5573a016b8e1f39
1 cdef extern from "Python.h":
3     ############################################################################
4     # 7.2.3
5     ############################################################################
6     # PyFloatObject
7     #
8     # This subtype of PyObject represents a Python floating point object.
10     # PyTypeObject PyFloat_Type
11     #
12     # This instance of PyTypeObject represents the Python floating
13     # point type. This is the same object as float and
14     # types.FloatType.
16     bint PyFloat_Check(object p)
17     # Return true if its argument is a PyFloatObject or a subtype of
18     # PyFloatObject.
20     bint PyFloat_CheckExact(object p)
21     # Return true if its argument is a PyFloatObject, but not a
22     # subtype of PyFloatObject.
24     object PyFloat_FromString(object str, char **pend)
25     # Return value: New reference.
26     # Create a PyFloatObject object based on the string value in str,
27     # or NULL on failure. The pend argument is ignored. It remains
28     # only for backward compatibility.
30     object PyFloat_FromDouble(double v)
31     # Return value: New reference.
32     # Create a PyFloatObject object from v, or NULL on failure.
34     double PyFloat_AsDouble(object pyfloat) except? -1
35     # Return a C double representation of the contents of pyfloat.
37     double PyFloat_AS_DOUBLE(object pyfloat)
38     # Return a C double representation of the contents of pyfloat, but
39     # without error checking.