Searched refs:PySet_CheckExact (Results 1 – 7 of 7) sorted by relevance
102 #define PySet_CheckExact(op) Py_IS_TYPE(op, &PySet_Type) macro
68 .. c:function:: int PySet_CheckExact(PyObject *p)
37 Add a new :c:func:`PySet_CheckExact` function to the C-API to check if an
539 if (!PySet_CheckExact(so)) in set_repr()
4462 if (PySet_CheckExact(other) && len_self <= PyObject_Size(other)) { in _PyDictView_Intersect()
981 assert(PySet_CheckExact(seen)); in match_class_attr()
2088 * Add a new :c:func:`PySet_CheckExact` function to the C-API to check if an