Home
last modified time | relevance | path

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

/third_party/python/Include/
Dsetobject.h102 #define PySet_CheckExact(op) Py_IS_TYPE(op, &PySet_Type) macro
/third_party/python/Doc/c-api/
Dset.rst68 .. c:function:: int PySet_CheckExact(PyObject *p)
/third_party/python/Misc/NEWS.d/
D3.10.0a6.rst37 Add a new :c:func:`PySet_CheckExact` function to the C-API to check if an
/third_party/python/Objects/
Dsetobject.c539 if (!PySet_CheckExact(so)) in set_repr()
Ddictobject.c4462 if (PySet_CheckExact(other) && len_self <= PyObject_Size(other)) { in _PyDictView_Intersect()
/third_party/python/Python/
Dceval.c981 assert(PySet_CheckExact(seen)); in match_class_attr()
/third_party/python/Doc/whatsnew/
D3.10.rst2088 * Add a new :c:func:`PySet_CheckExact` function to the C-API to check if an