• Home
  • Raw
  • Download

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()
653 assert (PyAnySet_Check(so)); in set_merge()
654 assert (PyAnySet_Check(otherset)); in set_merge()
723 assert (PyAnySet_Check(so)); in set_pop()
850 assert (PyAnySet_Check(so)); in setiter_iternext()
932 if (PyAnySet_Check(other)) in set_update_internal()
1207 if (!PyAnySet_Check(so) || !PyAnySet_Check(other)) { in set_or()
1227 if (!PyAnySet_Check(other)) { in set_ior()
1250 if (PyAnySet_Check(other)) { in set_intersection()
1380 if (!PyAnySet_Check(so) || !PyAnySet_Check(other)) { in set_and()
1392 if (!PyAnySet_Check(other)) { in set_iand()
1477 if (PyAnySet_Check(other)) { in set_difference_update_internal()
1531 if (!PyAnySet_Check(other) && !PyDict_CheckExact(other)) { in set_difference()
1613 if (!PyAnySet_Check(so) || !PyAnySet_Check(other)) { in set_sub()
1623 if (!PyAnySet_Check(other)) { in set_isub()
1671 if (PyAnySet_Check(other)) { in set_symmetric_difference_update()
1724 if (!PyAnySet_Check(so) || !PyAnySet_Check(other)) { in set_xor()
1736 if (!PyAnySet_Check(other)) { in set_ixor()
1754 if (!PyAnySet_Check(other)) { in set_issubset()
1783 if (!PyAnySet_Check(other)) { in set_issuperset()
1802 if(!PyAnySet_Check(w)) { in set_richcompare()
1997 if (!PyAnySet_Check(self)) in set_init()
2282 if (!PyAnySet_Check(anyset)) { in PySet_Size()
2302 if (!PyAnySet_Check(anyset)) { in PySet_Contains()
2335 if (!PyAnySet_Check(set)) { in _PySet_Next()
2350 if (!PyAnySet_Check(set)) { in _PySet_NextEntry()
2404 assert(PyAnySet_Check(ob)); in test_c_api()