File tree Expand file tree Collapse file tree 1 file changed +0
-5
lines changed
Expand file tree Collapse file tree 1 file changed +0
-5
lines changed Original file line number Diff line number Diff line change 1010to Zip archives.
1111"""
1212
13- #from importlib import _bootstrap_external
14- #from importlib import _bootstrap # for _verbose_message
1513import _frozen_importlib_external as _bootstrap_external
1614from _frozen_importlib_external import _unpack_uint16 , _unpack_uint32 , _unpack_uint64
1715import _frozen_importlib as _bootstrap # for _verbose_message
1816import _imp # for check_hash_based_pycs
1917import _io # for open
2018import marshal # for loads
21- import sys # for modules
2219import time # for mktime
2320
2421__all__ = ['ZipImportError' , 'zipimporter' ]
@@ -34,8 +31,6 @@ class ZipImportError(ImportError):
3431# _read_directory() cache
3532_zip_directory_cache = {}
3633
37- _module_type = type (sys )
38-
3934END_CENTRAL_DIR_SIZE = 22
4035END_CENTRAL_DIR_SIZE_64 = 56
4136END_CENTRAL_DIR_LOCATOR_SIZE_64 = 20
You can’t perform that action at this time.
0 commit comments