Home
last modified time | relevance | path

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

/third_party/python/Modules/
D_abc.c421 #define COLLECTION_FLAGS (Py_TPFLAGS_SEQUENCE | Py_TPFLAGS_MAPPING)
487 assert(flag == Py_TPFLAGS_MAPPING || flag == Py_TPFLAGS_SEQUENCE); in set_collection_flag_recursive()
/third_party/python/Include/
Dobject.h329 #define Py_TPFLAGS_MAPPING (1 << 6) macro
/third_party/python/Misc/NEWS.d/
D3.10.0b4.rst161 Set the proper :const:`Py_TPFLAGS_MAPPING` and :const:`Py_TPFLAGS_SEQUENCE`
D3.10.0b1.rst1378 Document the new :const:`Py_TPFLAGS_MAPPING` and
/third_party/python/Objects/
Ddescrobject.c1854 Py_TPFLAGS_MAPPING, /* tp_flags */
Ddictobject.c3556 _Py_TPFLAGS_MATCH_SELF | Py_TPFLAGS_MAPPING, /* tp_flags */
Dtypeobject.c5954 #define COLLECTION_FLAGS (Py_TPFLAGS_SEQUENCE | Py_TPFLAGS_MAPPING)
/third_party/python/Doc/c-api/
Dtypeobj.rst1225 .. data:: Py_TPFLAGS_MAPPING
1234 :const:`Py_TPFLAGS_MAPPING` and :const:`Py_TPFLAGS_SEQUENCE` are
1256 :const:`Py_TPFLAGS_MAPPING` and :const:`Py_TPFLAGS_SEQUENCE` are
1262 :const:`Py_TPFLAGS_MAPPING`.
/third_party/python/Doc/library/
Ddis.rst774 it has the :const:`Py_TPFLAGS_MAPPING` flag set in its
/third_party/python/Doc/reference/
Dcompound_stmts.rst1532 * a builtin class that has its (CPython) :data:`Py_TPFLAGS_MAPPING` bit set
/third_party/python/Python/
Dceval.c3892 int match = Py_TYPE(subject)->tp_flags & Py_TPFLAGS_MAPPING; in _PyEval_EvalFrameDefault()