Staging
v0.5.1
https://github.com/python/cpython
Revision 78c4095d521ceb1625e4a36f3695c8546e620bbb authored by Fred Drake on 17 June 2002, 17:16:11 UTC, committed by Fred Drake on 17 June 2002, 17:16:11 UTC
1 parent f89e4dd
Raw File
Tip revision: 78c4095d521ceb1625e4a36f3695c8546e620bbb authored by Fred Drake on 17 June 2002, 17:16:11 UTC
PyModule_AddObject(): Added missing exceptions.
Tip revision: 78c4095
floatobject.h

/* Float object interface */

/*
PyFloatObject represents a (double precision) floating point number.
*/

#ifndef Py_FLOATOBJECT_H
#define Py_FLOATOBJECT_H
#ifdef __cplusplus
extern "C" {
#endif

typedef struct {
    PyObject_HEAD
    double ob_fval;
} PyFloatObject;

extern DL_IMPORT(PyTypeObject) PyFloat_Type;

#define PyFloat_Check(op) ((op)->ob_type == &PyFloat_Type)

extern DL_IMPORT(PyObject *) PyFloat_FromString(PyObject*, char**);
extern DL_IMPORT(PyObject *) PyFloat_FromDouble(double);
extern DL_IMPORT(double) PyFloat_AsDouble(PyObject *);

/* Macro, trading safety for speed */
#define PyFloat_AS_DOUBLE(op) (((PyFloatObject *)(op))->ob_fval)

#ifdef __cplusplus
}
#endif
#endif /* !Py_FLOATOBJECT_H */
back to top