Searched refs:set_copy (Results 1 – 2 of 2) sorted by relevance
/external/python/cpython3/Objects/ |
D | setobject.c | 1096 set_copy(PySetObject *so, PyObject *Py_UNUSED(ignored)) in set_copy() function 1108 return set_copy(so, NULL); in frozenset_copy() 1129 result = (PySetObject *)set_copy(so, NULL); in set_union() 1158 result = (PySetObject *)set_copy(so, NULL); in set_or() 1191 return set_copy(so, NULL); in set_intersection() 1264 return set_copy(so, NULL); in set_intersection_multi() 1475 result = set_copy(so, NULL); in set_copy_and_difference() 1559 return set_copy(so, NULL); in set_difference_multi() 2011 {"copy", (PyCFunction)set_copy, METH_NOARGS,
|
/external/python/cpython2/Objects/ |
D | setobject.c | 1151 set_copy(PySetObject *so) in set_copy() function 1163 return set_copy(so); in frozenset_copy() 1184 result = (PySetObject *)set_copy(so); in set_union() 1215 result = (PySetObject *)set_copy(so); in set_or() 1247 return set_copy(so); in set_intersection() 1330 return set_copy(so); in set_intersection_multi() 1535 result = set_copy(so); in set_difference() 1592 return set_copy(so); in set_difference_multi() 2042 {"copy", (PyCFunction)set_copy, METH_NOARGS,
|