Home
last modified time | relevance | path

Searched defs:PyType_HasFeature (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython3/Include/
Dobject.h683 #define PyType_HasFeature(t,f) ((PyType_GetFlags(t) & (f)) != 0) macro
685 #define PyType_HasFeature(t,f) (((t)->tp_flags & (f)) != 0) macro
/external/python/cpython2/Include/
Dobject.h659 #define PyType_HasFeature(t,f) (((t)->tp_flags & (f)) != 0) macro