Lines Matching refs:PyAnySet_Check
392 assert (PyAnySet_Check(so)); in set_clear_internal()
451 assert (PyAnySet_Check(so)); in set_next()
552 assert (PyAnySet_Check(so)); in set_merge()
553 assert (PyAnySet_Check(otherset)); in set_merge()
790 assert (PyAnySet_Check(so)); in setiter_iternext()
872 if (PyAnySet_Check(other)) in set_update_internal()
1155 if (!PyAnySet_Check(so) || !PyAnySet_Check(other)) in set_or()
1173 if (!PyAnySet_Check(other)) in set_ior()
1197 if (PyAnySet_Check(other)) { in set_intersection()
1317 if (!PyAnySet_Check(so) || !PyAnySet_Check(other)) in set_and()
1327 if (!PyAnySet_Check(other)) in set_iand()
1407 if (PyAnySet_Check(other)) { in set_difference_update_internal()
1494 if (PyAnySet_Check(other)) { in set_difference()
1583 if (!PyAnySet_Check(so) || !PyAnySet_Check(other)) in set_sub()
1591 if (!PyAnySet_Check(other)) in set_isub()
1632 if (PyAnySet_Check(other)) { in set_symmetric_difference_update()
1689 if (!PyAnySet_Check(so) || !PyAnySet_Check(other)) in set_xor()
1699 if (!PyAnySet_Check(other)) in set_ixor()
1716 if (!PyAnySet_Check(other)) { in set_issubset()
1745 if (!PyAnySet_Check(other)) { in set_issuperset()
1764 if(!PyAnySet_Check(w)) in set_richcompare()
2254 if (!PyAnySet_Check(anyset)) { in PySet_Size()
2274 if (!PyAnySet_Check(anyset)) { in PySet_Contains()
2313 if (!PyAnySet_Check(set)) { in _PySet_NextEntry()
2371 assert(PyAnySet_Check(ob)); in test_c_api()