Home | History | Annotate | Download | only in python2.7

Lines Matching refs:PyType_HasFeature

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