Home | History | Annotate | Download | only in Objects

Lines Matching refs:otherset

645 set_merge(PySetObject *so, PyObject *otherset)
654 assert (PyAnySet_Check(otherset));
656 other = (PySetObject*)otherset;
1636 PySetObject *otherset;
1673 otherset = (PySetObject *)other;
1675 otherset = (PySetObject *)make_new_set(Py_TYPE(so), other);
1676 if (otherset == NULL)
1680 while (set_next(otherset, &pos, &entry)) {
1683 Py_DECREF(otherset);
1688 Py_DECREF(otherset);
1693 Py_DECREF(otherset);
1704 PySetObject *otherset;
1706 otherset = (PySetObject *)make_new_set(Py_TYPE(so), other);
1707 if (otherset == NULL)
1709 rv = set_symmetric_difference_update(otherset, (PyObject *)so);
1713 return (PyObject *)otherset;