diff options
Diffstat (limited to 'Include')
-rw-r--r-- | Include/floatobject.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Include/floatobject.h b/Include/floatobject.h index 9f67bc1..bd4a782 100644 --- a/Include/floatobject.h +++ b/Include/floatobject.h @@ -19,6 +19,7 @@ typedef struct { extern DL_IMPORT(PyTypeObject) PyFloat_Type; #define PyFloat_Check(op) PyObject_TypeCheck(op, &PyFloat_Type) +#define PyFloat_CheckExact(op) ((op)->ob_type == &PyFloat_Type) /* Return Python float from string PyObject. Second argument ignored on input, and, if non-NULL, NULL is stored into *junk (this tried to serve a |