Lines Matching defs:list
1214 // We hit the end-of-list sentinel value.
1374 /* Set __path__ to the empty list */
1971 A dummy list ["__doc__"] is passed as the 4th argument so that
2021 /* Call the __import__ function with the proper argument list
2047 Returns the list of file suffixes used to identify extension modules.
2054 PyObject *list;
2056 list = PyList_New(0);
2057 if (list == NULL)
2066 Py_DECREF(list);
2069 if (PyList_Append(list, item) < 0) {
2070 Py_DECREF(list);
2078 return list;
2281 Returns the list of available frozen modules.