Home
last modified time | relevance | path

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

/external/python/cpython3/Modules/
D_pickle.c6511 PyObject *extend_func; in do_append() local
6514 if (_PyObject_LookupAttrId(list, &PyId_extend, &extend_func) < 0) { in do_append()
6517 if (extend_func != NULL) { in do_append()
6520 Py_DECREF(extend_func); in do_append()
6523 result = _Pickle_FastCall(extend_func, slice); in do_append()
6524 Py_DECREF(extend_func); in do_append()