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.h659 #define Py_TPFLAGS_IS_ABSTRACT (1UL << 20) macro
/external/python/cpython3/Objects/
Dtypeobject.c568 type->tp_flags |= Py_TPFLAGS_IS_ABSTRACT; in type_set_abstractmethods()
570 type->tp_flags &= ~Py_TPFLAGS_IS_ABSTRACT; in type_set_abstractmethods()
3687 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()
3024 if (type->tp_flags & Py_TPFLAGS_IS_ABSTRACT) { in object_new()