Lines Matching refs:modpath
313 char *fullname, *modpath; in zipimporter_load_module() local
320 code = get_module_code(self, fullname, &ispackage, &modpath); in zipimporter_load_module()
360 mod = PyImport_ExecCodeModuleEx(fullname, code, modpath); in zipimporter_load_module()
364 fullname, modpath); in zipimporter_load_module()
378 char *fullname, *modpath; in zipimporter_get_filename() local
387 code = get_module_code(self, fullname, &ispackage, &modpath); in zipimporter_get_filename()
392 return PyString_FromString(modpath); in zipimporter_get_filename()
1206 char *modpath; in get_code_from_data() local
1216 modpath = PyString_AsString(PyTuple_GetItem(toc_entry, 0)); in get_code_from_data()
1219 code = unmarshal_code(modpath, data, mtime); in get_code_from_data()
1222 code = compile_source(modpath, data); in get_code_from_data()