Lines Matching refs:PyAnySet_Check

428     assert (PyAnySet_Check(so));  in set_discard_key()
457 assert (PyAnySet_Check(so)); in set_clear_internal()
532 assert (PyAnySet_Check(so)); in set_next()
654 assert (PyAnySet_Check(so)); in set_merge()
655 assert (PyAnySet_Check(otherset)); in set_merge()
724 assert (PyAnySet_Check(so)); in set_pop()
853 assert (PyAnySet_Check(so)); in setiter_iternext()
935 if (PyAnySet_Check(other)) in set_update_internal()
1210 if (!PyAnySet_Check(so) || !PyAnySet_Check(other)) { in set_or()
1230 if (!PyAnySet_Check(other)) { in set_ior()
1253 if (PyAnySet_Check(other)) { in set_intersection()
1383 if (!PyAnySet_Check(so) || !PyAnySet_Check(other)) { in set_and()
1395 if (!PyAnySet_Check(other)) { in set_iand()
1480 if (PyAnySet_Check(other)) { in set_difference_update_internal()
1534 if (!PyAnySet_Check(other) && !PyDict_CheckExact(other)) { in set_difference()
1616 if (!PyAnySet_Check(so) || !PyAnySet_Check(other)) { in set_sub()
1626 if (!PyAnySet_Check(other)) { in set_isub()
1674 if (PyAnySet_Check(other)) { in set_symmetric_difference_update()
1729 if (!PyAnySet_Check(so) || !PyAnySet_Check(other)) { in set_xor()
1741 if (!PyAnySet_Check(other)) { in set_ixor()
1759 if (!PyAnySet_Check(other)) { in set_issubset()
1788 if (!PyAnySet_Check(other)) { in set_issuperset()
1807 if(!PyAnySet_Check(w)) { in set_richcompare()
2002 if (!PyAnySet_Check(self)) in set_init()
2287 if (!PyAnySet_Check(anyset)) { in PySet_Size()
2307 if (!PyAnySet_Check(anyset)) { in PySet_Contains()
2340 if (!PyAnySet_Check(set)) { in _PySet_Next()
2355 if (!PyAnySet_Check(set)) { in _PySet_NextEntry()
2409 assert(PyAnySet_Check(ob)); in test_c_api()