Home | History | Annotate | Download | only in Python

Lines Matching defs:newlist

2238     PyObject *newlist, *v, *seq, *callable;
2245 newlist = PySequence_List(seq);
2246 if (newlist == NULL)
2249 callable = _PyObject_GetAttrId(newlist, &PyId_sort);
2251 Py_DECREF(newlist);
2259 Py_DECREF(newlist);
2263 return newlist;