Lines Matching defs:names
1549 PyObject *names;
1556 names = PyMapping_Keys(locals);
1557 if (!names)
1559 if (!PyList_Check(names)) {
1562 "not '%.200s'", Py_TYPE(names)->tp_name);
1563 Py_DECREF(names);
1566 if (PyList_Sort(names)) {
1567 Py_DECREF(names);
1571 return names;
1604 /* Implementation of dir() -- if obj is NULL, returns the names in the current
1606 sorted list of attribute names (supposedly) accessible from the object