diff options
Diffstat (limited to 'Include/dictobject.h')
-rw-r--r-- | Include/dictobject.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Include/dictobject.h b/Include/dictobject.h index afc55af..76fc75b 100644 --- a/Include/dictobject.h +++ b/Include/dictobject.h @@ -97,11 +97,11 @@ PyAPI_DATA(PyTypeObject) PyDictItems_Type; PyAPI_DATA(PyTypeObject) PyDictValues_Type; #define PyDict_Check(op) \ - PyType_FastSubclass(Py_Type(op), Py_TPFLAGS_DICT_SUBCLASS) -#define PyDict_CheckExact(op) (Py_Type(op) == &PyDict_Type) -#define PyDictKeys_Check(op) (Py_Type(op) == &PyDictKeys_Type) -#define PyDictItems_Check(op) (Py_Type(op) == &PyDictItems_Type) -#define PyDictValues_Check(op) (Py_Type(op) == &PyDictValues_Type) + PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_DICT_SUBCLASS) +#define PyDict_CheckExact(op) (Py_TYPE(op) == &PyDict_Type) +#define PyDictKeys_Check(op) (Py_TYPE(op) == &PyDictKeys_Type) +#define PyDictItems_Check(op) (Py_TYPE(op) == &PyDictItems_Type) +#define PyDictValues_Check(op) (Py_TYPE(op) == &PyDictValues_Type) /* This excludes Values, since they are not sets. */ # define PyDictViewSet_Check(op) \ (PyDictKeys_Check(op) || PyDictItems_Check(op)) |