Searched refs:get_module_code (Results 1 – 2 of 2) sorted by relevance
/external/python/cpython2/Modules/ |
D | zipimport.c | 49 static PyObject *get_module_code(ZipImporter *self, char *fullname, 320 code = get_module_code(self, fullname, &ispackage, &modpath); in zipimporter_load_module() 387 code = get_module_code(self, fullname, &ispackage, &modpath); in zipimporter_get_filename() 468 return get_module_code(self, fullname, NULL, NULL); in zipimporter_get_code() 1231 get_module_code(ZipImporter *self, char *fullname, in get_module_code() function
|
/external/python/cpython3/Modules/ |
D | zipimport.c | 56 static PyObject *get_module_code(ZipImporter *self, PyObject *fullname, 532 code = get_module_code(self, fullname, &ispackage, &modpath); in zipimport_zipimporter_load_module_impl() 605 code = get_module_code(self, fullname, &ispackage, &modpath); in zipimport_zipimporter_get_filename_impl() 721 return get_module_code(self, fullname, NULL, NULL); in zipimport_zipimporter_get_code_impl() 1524 get_module_code(ZipImporter *self, PyObject *fullname, in get_module_code() function
|