Home
last modified time | relevance | path

Searched refs:ZipImporter (Results 1 – 6 of 6) sorted by relevance

/external/python/cpython3/Modules/clinic/
Dzipimport.c.h27 zipimport_zipimporter___init___impl(ZipImporter *self, PyObject *path);
43 return_value = zipimport_zipimporter___init___impl((ZipImporter *)self, path); in zipimport_zipimporter___init__()
64 zipimport_zipimporter_find_module_impl(ZipImporter *self, PyObject *fullname,
68 zipimport_zipimporter_find_module(ZipImporter *self, PyObject *const *args, Py_ssize_t nargs) in zipimport_zipimporter_find_module()
100 zipimport_zipimporter_find_loader_impl(ZipImporter *self, PyObject *fullname,
104 zipimport_zipimporter_find_loader(ZipImporter *self, PyObject *const *args, Py_ssize_t nargs) in zipimport_zipimporter_find_loader()
133 zipimport_zipimporter_load_module_impl(ZipImporter *self, PyObject *fullname);
136 zipimport_zipimporter_load_module(ZipImporter *self, PyObject *arg) in zipimport_zipimporter_load_module()
160 zipimport_zipimporter_get_filename_impl(ZipImporter *self,
164 zipimport_zipimporter_get_filename(ZipImporter *self, PyObject *arg) in zipimport_zipimporter_get_filename()
[all …]
/external/python/cpython2/Modules/
Dzipimport.c34 typedef struct _zipimporter ZipImporter; typedef
49 static PyObject *get_module_code(ZipImporter *self, char *fullname,
61 zipimporter_init(ZipImporter *self, PyObject *args, PyObject *kwds) in zipimporter_init()
172 ZipImporter *self = (ZipImporter *)obj; in zipimporter_traverse()
178 zipimporter_dealloc(ZipImporter *self) in zipimporter_dealloc()
188 zipimporter_repr(ZipImporter *self) in zipimporter_repr()
258 get_module_info(ZipImporter *self, char *fullname) in get_module_info()
287 ZipImporter *self = (ZipImporter *)obj; in zipimporter_find_module()
311 ZipImporter *self = (ZipImporter *)obj; in zipimporter_load_module()
376 ZipImporter *self = (ZipImporter *)obj; in zipimporter_get_filename()
[all …]
/external/python/cpython3/Modules/
Dzipimport.c38 typedef struct _zipimporter ZipImporter; typedef
56 static PyObject *get_module_code(ZipImporter *self, PyObject *fullname,
100 zipimport_zipimporter___init___impl(ZipImporter *self, PyObject *path) in zipimport_zipimporter___init___impl()
205 ZipImporter *self = (ZipImporter *)obj; in zipimporter_traverse()
211 zipimporter_dealloc(ZipImporter *self) in zipimporter_dealloc()
221 zipimporter_repr(ZipImporter *self) in zipimporter_repr()
301 check_is_directory(ZipImporter *self, PyObject* prefix, PyObject *path) in check_is_directory()
320 get_module_info(ZipImporter *self, PyObject *fullname) in get_module_info()
372 find_loader(ZipImporter *self, PyObject *fullname, PyObject **namespace_portion) in find_loader()
434 zipimport_zipimporter_find_module_impl(ZipImporter *self, PyObject *fullname, in zipimport_zipimporter_find_module_impl()
[all …]
/external/python/cpython2/Misc/NEWS.d/
D2.7a1.rst3908 Promote ``ZipImporter._get_filename()`` to be a public documented method
3909 ``ZipImporter.get_filename()``.
/external/python/setuptools/
DCHANGES.rst2048 * Issue #202: Implemented more robust cache invalidation for the ZipImporter,
/external/python/cpython3/Misc/
DHISTORY15630 - Issue #4512 (part 2): Promote ``ZipImporter._get_filename()`` to be a
15631 public documented method ``ZipImporter.get_filename()``.