Home | History | Annotate | Download | only in Python

Lines Matching defs:store_name

1625     /* Compute store_name, the name actually bound by the import
1629 PyObject *store_name;
1634 store_name = PyUnicode_Substring(name, 0, dot);
1635 if (!store_name)
1639 store_name = name;
1640 Py_INCREF(store_name);
1643 int r = symtable_add_def(st, store_name, DEF_IMPORT);
1644 Py_DECREF(store_name);
1653 Py_DECREF(store_name);
1656 Py_DECREF(store_name);