summaryrefslogtreecommitdiff
path: root/Include/floatobject.h
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2001-08-29 15:45:32 +0000
committerGuido van Rossum <guido@python.org>2001-08-29 15:45:32 +0000
commit841504facbce67a6f89bc5ec600c61943e1263e1 (patch)
tree6344dbed87b3a884cdc6df2b0fdacdad95b15473 /Include/floatobject.h
parente28fbead5a5ac73fa38e8037ff02ca89b650079e (diff)
downloadcpython-841504facbce67a6f89bc5ec600c61943e1263e1.tar.gz
Make the PyXXX_Check() macros for the numeric types inheritance-aware.
Diffstat (limited to 'Include/floatobject.h')
-rw-r--r--Include/floatobject.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/floatobject.h b/Include/floatobject.h
index 6e36a2f318..9f67bc107d 100644
--- a/Include/floatobject.h
+++ b/Include/floatobject.h
@@ -18,7 +18,7 @@ typedef struct {
extern DL_IMPORT(PyTypeObject) PyFloat_Type;
-#define PyFloat_Check(op) ((op)->ob_type == &PyFloat_Type)
+#define PyFloat_Check(op) PyObject_TypeCheck(op, &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