diff options
Diffstat (limited to 'Include/boolobject.h')
-rw-r--r-- | Include/boolobject.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/boolobject.h b/Include/boolobject.h index 6499345..74e854f 100644 --- a/Include/boolobject.h +++ b/Include/boolobject.h @@ -11,7 +11,7 @@ typedef PyIntObject PyBoolObject; PyAPI_DATA(PyTypeObject) PyBool_Type; -#define PyBool_Check(x) (Py_Type(x) == &PyBool_Type) +#define PyBool_Check(x) (Py_TYPE(x) == &PyBool_Type) /* Py_False and Py_True are the only two bools in existence. Don't forget to apply Py_INCREF() when returning either!!! */ |