Home
last modified time | relevance | path

Searched refs:Py_TPFLAGS_DICT_SUBCLASS (Results 1 – 11 of 11) sorted by relevance

/external/python/cpython2/Include/
Ddictobject.h100 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_DICT_SUBCLASS)
Dobject.h635 #define Py_TPFLAGS_DICT_SUBCLASS (1L<<29) macro
/external/python/cpython3/Include/
Ddictobject.h59 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_DICT_SUBCLASS)
Dobject.h667 #define Py_TPFLAGS_DICT_SUBCLASS (1UL << 29) macro
/external/python/cpython2/Tools/gdb/
Dlibpython.py81 Py_TPFLAGS_DICT_SUBCLASS = (1 << 29) variable
362 if tp_flags & Py_TPFLAGS_DICT_SUBCLASS:
/external/python/cpython3/Tools/gdb/
Dlibpython.py91 Py_TPFLAGS_DICT_SUBCLASS = (1 << 29) variable
388 if tp_flags & Py_TPFLAGS_DICT_SUBCLASS:
/external/python/cpython2/Objects/
Ddictobject.c2478 Py_TPFLAGS_BASETYPE | Py_TPFLAGS_DICT_SUBCLASS, /* tp_flags */
Dtypeobject.c3908 type->tp_flags |= Py_TPFLAGS_DICT_SUBCLASS;
/external/python/cpython3/Objects/
Ddictobject.c3222 Py_TPFLAGS_BASETYPE | Py_TPFLAGS_DICT_SUBCLASS, /* tp_flags */
Dtypeobject.c4921 type->tp_flags |= Py_TPFLAGS_DICT_SUBCLASS; in inherit_special()
/external/python/cpython3/Doc/c-api/
Dtypeobj.rst459 .. data:: Py_TPFLAGS_DICT_SUBCLASS