Home
last modified time | relevance | path

Searched refs:Py_TPFLAGS_IS_ABSTRACT (Results 1 – 4 of 4) sorted by relevance

/external/python/cpython2/Include/
Dobject.h623 #define Py_TPFLAGS_IS_ABSTRACT (1L<<20) macro
/external/python/cpython3/Include/
Dobject.h646 #define Py_TPFLAGS_IS_ABSTRACT (1UL << 20) macro
/external/python/cpython3/Objects/
Dtypeobject.c539 type->tp_flags |= Py_TPFLAGS_IS_ABSTRACT; in type_set_abstractmethods()
541 type->tp_flags &= ~Py_TPFLAGS_IS_ABSTRACT; in type_set_abstractmethods()
3476 if (type->tp_flags & Py_TPFLAGS_IS_ABSTRACT) { in object_new()
/external/python/cpython2/Objects/
Dtypeobject.c372 type->tp_flags |= Py_TPFLAGS_IS_ABSTRACT; in type_set_abstractmethods()
374 type->tp_flags &= ~Py_TPFLAGS_IS_ABSTRACT; in type_set_abstractmethods()
2984 if (type->tp_flags & Py_TPFLAGS_IS_ABSTRACT) { in object_new()