Searched refs:_PySet_Update (Results 1 – 5 of 5) sorted by relevance
/third_party/python/Include/ |
D | setobject.h | 72 PyAPI_FUNC(int) _PySet_Update(PyObject *set, PyObject *iterable);
|
/third_party/python/Objects/ |
D | setobject.c | 2328 _PySet_Update(PyObject *set, PyObject *iterable) in _PySet_Update() function 2414 assertRaises(_PySet_Update(f, dup) == -1, PyExc_SystemError); in test_c_api() 2432 assert(_PySet_Update(dup2, dup) == 0); in test_c_api() 2434 assert(_PySet_Update(dup2, dup) == 0); in test_c_api()
|
D | dictobject.c | 4533 if (_PySet_Update(result, other) < 0) { in dictviews_or() 4610 if (_PySet_Update(result_set, remaining_pairs) < 0) { in dictitems_xor()
|
/third_party/python/Python/ |
D | ceval.c | 3214 int err = _PySet_Update(set, iterable); in _PyEval_EvalFrameDefault()
|
/third_party/python/Modules/ |
D | _pickle.c | 6606 status = _PySet_Update(set, items); in load_additems()
|