Searched refs:PyType_HasFeature (Results 1 – 14 of 14) sorted by relevance
/third_party/python/Include/ |
D | objimpl.h | 161 #define PyType_IS_GC(t) PyType_HasFeature((t), Py_TPFLAGS_HAVE_GC)
|
D | object.h | 722 PyType_HasFeature(PyTypeObject *type, unsigned long feature) in PyType_HasFeature() function 734 #define PyType_FastSubclass(type, flag) PyType_HasFeature(type, flag)
|
/third_party/python/Include/cpython/ |
D | abstract.h | 70 if (!PyType_HasFeature(tp, Py_TPFLAGS_HAVE_VECTORCALL)) { in PyVectorcall_Function()
|
/third_party/python/Modules/ |
D | _abc.c | 488 if (PyType_HasFeature(child, Py_TPFLAGS_IMMUTABLETYPE) || in set_collection_flag_recursive()
|
D | pyexpat.c | 1600 assert(!PyType_HasFeature(state->xml_parse_type, Py_TPFLAGS_VALID_VERSION_TAG)); in init_handler_descrs()
|
D | _testcapimodule.c | 3770 if (!PyType_Check(obj) || !PyType_HasFeature(tp, Py_TPFLAGS_HEAPTYPE)) { in with_tp_del() 3784 if (!PyType_Check(obj) || !PyType_HasFeature(tp, Py_TPFLAGS_HEAPTYPE)) { in without_gc()
|
/third_party/python/Doc/c-api/ |
D | type.rst | 60 .. c:function:: int PyType_HasFeature(PyTypeObject *o, int feature)
|
D | typeobj.rst | 1038 :c:func:`PyType_HasFeature` takes a type and a flags value, *tp* and *f*, and
|
/third_party/python/Doc/data/ |
D | refcounts.dat | 2314 PyType_HasFeature:int::: 2315 PyType_HasFeature:PyTypeObject*:o:0: 2316 PyType_HasFeature:int:feature::
|
/third_party/python/Misc/NEWS.d/ |
D | 3.9.0a4.rst | 888 Convert :c:func:`PyType_HasFeature`, :c:func:`PyType_Check` and
|
D | 3.9.0a6.rst | 1165 :c:func:`PyType_HasFeature` now always calls :c:func:`PyType_GetFlags` to
|
D | 3.10.0a1.rst | 3310 Revert :c:func:`PyType_HasFeature` change: it reads again directly the
|
/third_party/python/Python/ |
D | ceval.c | 1046 match_self = PyType_HasFeature((PyTypeObject*)type, in match_class() 3419 if (co_opcache != NULL && PyType_HasFeature(type, Py_TPFLAGS_VALID_VERSION_TAG)) in _PyEval_EvalFrameDefault()
|
/third_party/python/Objects/ |
D | typeobject.c | 5734 if (PyType_HasFeature(base, _Py_TPFLAGS_MATCH_SELF)) { in inherit_special()
|