We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 790cdae commit b252431Copy full SHA for b252431
Lib/zipimport.py
@@ -18,7 +18,6 @@
18
import _imp # for check_hash_based_pycs
19
import _io # for open
20
import marshal # for loads
21
-import sys # for modules
22
import time # for mktime
23
24
__all__ = ['ZipImportError', 'zipimporter']
@@ -34,8 +33,6 @@ class ZipImportError(ImportError):
34
33
# _read_directory() cache
35
_zip_directory_cache = {}
36
37
-_module_type = type(sys)
38
-
39
END_CENTRAL_DIR_SIZE = 22
40
END_CENTRAL_DIR_SIZE_64 = 56
41
END_CENTRAL_DIR_LOCATOR_SIZE_64 = 20
0 commit comments