Home
last modified time | relevance | path

Searched refs:Py_TPFLAGS_LONG_SUBCLASS (Results 1 – 7 of 7) sorted by relevance

/third_party/python/Include/
Dlongobject.h15 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_LONG_SUBCLASS)
Dobject.h383 #define Py_TPFLAGS_LONG_SUBCLASS (1UL << 24) macro
/third_party/python/Tools/gdb/
Dlibpython.py86 Py_TPFLAGS_LONG_SUBCLASS = (1 << 24) variable
380 if tp_flags & Py_TPFLAGS_LONG_SUBCLASS:
/third_party/python/Objects/
Dlongobject.c5643 Py_TPFLAGS_LONG_SUBCLASS |
Dtypeobject.c5717 type->tp_flags |= Py_TPFLAGS_LONG_SUBCLASS; in inherit_special()
/third_party/python/Doc/c-api/
Dtypeobj.rst1147 .. data:: Py_TPFLAGS_LONG_SUBCLASS
/third_party/python/Python/
Dcompile.c4203 || PyType_FastSubclass(index_type, Py_TPFLAGS_LONG_SUBCLASS) in check_index()