Revert "bpo-40170: PyType_HasFeature() now always calls PyType_GetFlags() (GH-19378)" (GH-21390)
This partially reverts commit 45ec5b99aefa54552947049086e87ec01bc2fc9a.
(cherry picked from commit b26a0db8ea2de3a8a8e4b40e69fc8642c7d7cb68)
Co-authored-by: Victor Stinner <vstinner@python.org>
diff --git a/Include/object.h b/Include/object.h
index 514d934..9c1a7f4 100644
--- a/Include/object.h
+++ b/Include/object.h
@@ -618,8 +618,16 @@
static inline int
-PyType_HasFeature(PyTypeObject *type, unsigned long feature) {
- return ((PyType_GetFlags(type) & feature) != 0);
+PyType_HasFeature(PyTypeObject *type, unsigned long feature)
+{
+ unsigned long flags;
+#ifdef Py_LIMITED_API
+ // PyTypeObject is opaque in the limited C API
+ flags = PyType_GetFlags(type);
+#else
+ flags = type->tp_flags;
+#endif
+ return ((flags & feature) != 0);
}
#define PyType_FastSubclass(type, flag) PyType_HasFeature(type, flag)