Home
last modified time | relevance | path

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

/external/python/cpython2/Objects/
Dsetobject.c645 set_merge(PySetObject *so, PyObject *otherset) in set_merge() argument
654 assert (PyAnySet_Check(otherset)); in set_merge()
656 other = (PySetObject*)otherset; in set_merge()
1636 PySetObject *otherset; in set_symmetric_difference_update() local
1673 otherset = (PySetObject *)other; in set_symmetric_difference_update()
1675 otherset = (PySetObject *)make_new_set(Py_TYPE(so), other); in set_symmetric_difference_update()
1676 if (otherset == NULL) in set_symmetric_difference_update()
1680 while (set_next(otherset, &pos, &entry)) { in set_symmetric_difference_update()
1683 Py_DECREF(otherset); in set_symmetric_difference_update()
1688 Py_DECREF(otherset); in set_symmetric_difference_update()
[all …]