HomeSort by relevance Sort by last modified time
    Searched refs:modules_by_index (Results 1 - 2 of 2) sorted by null

  /external/python/cpython3/Python/
pystate.c 135 interp->modules_by_index = NULL;
207 Py_CLEAR(interp->modules_by_index);
456 if (state->modules_by_index == NULL)
458 if (index >= PyList_GET_SIZE(state->modules_by_index))
460 res = PyList_GET_ITEM(state->modules_by_index, index);
478 if (!state->modules_by_index) {
479 state->modules_by_index = PyList_New(0);
480 if (!state->modules_by_index)
483 while(PyList_GET_SIZE(state->modules_by_index) <= def->m_base.m_index)
484 if (PyList_Append(state->modules_by_index, Py_None) < 0
    [all...]
  /external/python/cpython3/Include/
pystate.h 123 PyObject *modules_by_index; member in struct:_is

Completed in 66 milliseconds