Home
last modified time | relevance | path

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

/external/python/cpython2/Objects/
Dlistobject.c802 listextend(PyListObject *self, PyObject *b) in listextend() function
913 return listextend(self, b); in _PyList_Extend()
921 result = listextend(self, other); in list_inplace_concat()
2462 PyObject *rv = listextend(self, arg); in list_init()
2519 {"extend", (PyCFunction)listextend, METH_O, extend_doc},