1991-02-19 08:39:46 -04:00
|
|
|
|
1990-10-14 09:07:46 -03:00
|
|
|
/* Float object interface */
|
|
|
|
|
|
|
|
/*
|
1995-01-12 07:45:45 -04:00
|
|
|
PyFloatObject represents a (double precision) floating point number.
|
1990-10-14 09:07:46 -03:00
|
|
|
*/
|
|
|
|
|
2000-07-08 21:20:36 -03:00
|
|
|
#ifndef Py_FLOATOBJECT_H
|
|
|
|
#define Py_FLOATOBJECT_H
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2002-08-12 04:21:58 -03:00
|
|
|
PyAPI_DATA(PyTypeObject) PyFloat_Type;
|
1990-10-14 09:07:46 -03:00
|
|
|
|
2001-08-29 12:45:32 -03:00
|
|
|
#define PyFloat_Check(op) PyObject_TypeCheck(op, &PyFloat_Type)
|
2020-02-13 13:37:17 -04:00
|
|
|
#define PyFloat_CheckExact(op) Py_IS_TYPE(op, &PyFloat_Type)
|
1990-10-14 09:07:46 -03:00
|
|
|
|
2008-04-18 21:31:39 -03:00
|
|
|
#ifdef Py_NAN
|
2021-10-14 18:41:06 -03:00
|
|
|
# define Py_RETURN_NAN return PyFloat_FromDouble(Py_NAN)
|
2008-04-18 21:31:39 -03:00
|
|
|
#endif
|
|
|
|
|
2021-10-14 18:41:06 -03:00
|
|
|
#define Py_RETURN_INF(sign) \
|
|
|
|
do { \
|
|
|
|
if (copysign(1., sign) == 1.) { \
|
|
|
|
return PyFloat_FromDouble(Py_HUGE_VAL); \
|
|
|
|
} \
|
|
|
|
else { \
|
|
|
|
return PyFloat_FromDouble(-Py_HUGE_VAL); \
|
|
|
|
} \
|
2011-09-28 18:58:57 -03:00
|
|
|
} while(0)
|
2008-04-18 21:31:39 -03:00
|
|
|
|
2007-12-01 08:22:32 -04:00
|
|
|
PyAPI_FUNC(double) PyFloat_GetMax(void);
|
|
|
|
PyAPI_FUNC(double) PyFloat_GetMin(void);
|
2021-10-14 18:41:06 -03:00
|
|
|
PyAPI_FUNC(PyObject*) PyFloat_GetInfo(void);
|
2007-12-01 08:22:32 -04:00
|
|
|
|
2007-03-18 15:35:15 -03:00
|
|
|
/* Return Python float from string PyObject. */
|
2021-10-14 18:41:06 -03:00
|
|
|
PyAPI_FUNC(PyObject*) PyFloat_FromString(PyObject*);
|
2001-05-08 12:19:57 -03:00
|
|
|
|
|
|
|
/* Return Python float from C double. */
|
2021-10-14 18:41:06 -03:00
|
|
|
PyAPI_FUNC(PyObject*) PyFloat_FromDouble(double);
|
1990-10-14 09:07:46 -03:00
|
|
|
|
2001-05-08 12:19:57 -03:00
|
|
|
/* Extract C double from Python float. The macro version trades safety for
|
|
|
|
speed. */
|
2021-10-14 18:41:06 -03:00
|
|
|
PyAPI_FUNC(double) PyFloat_AsDouble(PyObject*);
|
1993-07-28 06:05:47 -03:00
|
|
|
|
2010-12-03 16:14:31 -04:00
|
|
|
#ifndef Py_LIMITED_API
|
2021-10-14 18:41:06 -03:00
|
|
|
# define Py_CPYTHON_FLOATOBJECT_H
|
|
|
|
# include "cpython/floatobject.h"
|
|
|
|
# undef Py_CPYTHON_FLOATOBJECT_H
|
|
|
|
#endif
|
2008-05-30 15:10:19 -03:00
|
|
|
|
1993-07-28 06:05:47 -03:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif /* !Py_FLOATOBJECT_H */
|