Home
last modified time | relevance | path

Searched refs:Py_TPFLAGS_INT_SUBCLASS (Results 1 – 6 of 6) sorted by relevance

/external/python/cpython2/Include/
Dintobject.h31 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_INT_SUBCLASS)
Dobject.h629 #define Py_TPFLAGS_INT_SUBCLASS (1L<<23) macro
/external/python/cpython2/Tools/gdb/
Dlibpython.py75 Py_TPFLAGS_INT_SUBCLASS = (1 << 23) variable
350 if tp_flags & Py_TPFLAGS_INT_SUBCLASS:
/external/python/cpython2/Objects/
Dintobject.c1431 Py_TPFLAGS_BASETYPE | Py_TPFLAGS_INT_SUBCLASS, /* tp_flags */
Dtypeobject.c3894 type->tp_flags |= Py_TPFLAGS_INT_SUBCLASS;
/external/python/cpython3/Misc/
DHISTORY6302 - Issue #16505: Remove unused Py_TPFLAGS_INT_SUBCLASS.