Lines Matching defs:store_name
1941 /* Compute store_name, the name actually bound by the import
1945 PyObject *store_name;
1950 store_name = PyUnicode_Substring(name, 0, dot);
1951 if (!store_name)
1955 store_name = name;
1956 Py_INCREF(store_name);
1959 int r = symtable_add_def(st, store_name, DEF_IMPORT, LOCATION(a));
1960 Py_DECREF(store_name);
1973 Py_DECREF(store_name);
1976 Py_DECREF(store_name);