Home
last modified time | relevance | path

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

/external/python/cpython2/Objects/
Dsetobject.c928 set_update_internal(PySetObject *so, PyObject *other) in set_update_internal() function
987 if (set_update_internal(so, other) == -1) in set_update()
1029 if (set_update_internal(so, iterable) == -1) { in make_new_set()
1189 if (set_update_internal(result, other) == -1) { in set_union()
1217 if (set_update_internal(result, other) == -1) { in set_or()
1231 if (set_update_internal(so, other) == -1) in set_ior()
2007 return set_update_internal(self, iterable); in set_init()
2378 return set_update_internal((PySetObject *)set, iterable); in _PySet_Update()
2413 if (set_update_internal(so, str) == -1) { in test_c_api()