Home | History | Annotate | Download | only in Include

Lines Matching refs:PyType_HasFeature

555 Code can use PyType_HasFeature(type_ob, flag_value) to test whether the
659 #define PyType_HasFeature(t,f) (((t)->tp_flags & (f)) != 0)
660 #define PyType_FastSubclass(t,f) PyType_HasFeature(t,f)