Home
last modified time | relevance | path

Searched refs:Py_TPFLAGS_BASE_EXC_SUBCLASS (Results 1 – 12 of 12) sorted by relevance

/external/python/cpython2/Include/
Dpyerrors.h100 PyType_FastSubclass((PyTypeObject*)(x), Py_TPFLAGS_BASE_EXC_SUBCLASS)))
104 PyType_FastSubclass((x)->ob_type, Py_TPFLAGS_BASE_EXC_SUBCLASS))
Dobject.h636 #define Py_TPFLAGS_BASE_EXC_SUBCLASS (1L<<30) macro
/external/python/cpython3/Include/
Dpyerrors.h138 PyType_FastSubclass((PyTypeObject*)(x), Py_TPFLAGS_BASE_EXC_SUBCLASS))
141 PyType_FastSubclass((x)->ob_type, Py_TPFLAGS_BASE_EXC_SUBCLASS)
Dobject.h668 #define Py_TPFLAGS_BASE_EXC_SUBCLASS (1UL << 30) macro
/external/python/cpython2/Tools/gdb/
Dlibpython.py82 Py_TPFLAGS_BASE_EXC_SUBCLASS = (1 << 30) variable
364 if tp_flags & Py_TPFLAGS_BASE_EXC_SUBCLASS:
/external/python/cpython3/Tools/gdb/
Dlibpython.py92 Py_TPFLAGS_BASE_EXC_SUBCLASS = (1 << 30) variable
390 if tp_flags & Py_TPFLAGS_BASE_EXC_SUBCLASS:
/external/python/cpython2/Objects/
Dexceptions.c391 Py_TPFLAGS_BASE_EXC_SUBCLASS, /*tp_flags*/
Dtypeobject.c3890 type->tp_flags |= Py_TPFLAGS_BASE_EXC_SUBCLASS;
/external/python/cpython3/Objects/
Dexceptions.c378 Py_TPFLAGS_BASE_EXC_SUBCLASS, /*tp_flags*/
Dtypeobject.c4907 type->tp_flags |= Py_TPFLAGS_BASE_EXC_SUBCLASS; in inherit_special()
/external/python/cpython2/Python/
Dceval.c4817 PyType_FastSubclass((PyTypeObject*)(x), Py_TPFLAGS_BASE_EXC_SUBCLASS))
/external/python/cpython3/Doc/c-api/
Dtypeobj.rst460 .. data:: Py_TPFLAGS_BASE_EXC_SUBCLASS