Lines Matching defs:otherset
558 set_merge(PySetObject *so, PyObject *otherset)
567 assert (PyAnySet_Check(otherset));
569 other = (PySetObject*)otherset;
1619 PySetObject *otherset;
1651 otherset = (PySetObject *)other;
1653 otherset = (PySetObject *)make_new_set_basetype(Py_TYPE(so), other);
1654 if (otherset == NULL)
1658 while (set_next(otherset, &pos, &entry)) {
1664 Py_DECREF(otherset);
1670 Py_DECREF(otherset);
1677 Py_DECREF(otherset);
1688 PySetObject *otherset;
1690 otherset = (PySetObject *)make_new_set_basetype(Py_TYPE(so), other);
1691 if (otherset == NULL)
1693 rv = set_symmetric_difference_update(otherset, (PyObject *)so);
1695 Py_DECREF(otherset);
1699 return (PyObject *)otherset;