HomeSort by relevance Sort by last modified time
    Searched defs:PyType_HasFeature (Results 1 - 2 of 2) sorted by null

  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
object.h 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)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
object.h 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)
    [all...]

Completed in 27 milliseconds