opt
/
hc_python
/
lib
/
python3.12
/
site-packages
/
zipp
/
compat
/
Go to Home Directory
+
Upload
Create File
root@0UT1S:~$
Execute
By Order of Mr.0UT1S
[DIR] ..
N/A
[DIR] __pycache__
N/A
__init__.py
0 bytes
Rename
Delete
overlay.py
783 bytes
Rename
Delete
py310.py
256 bytes
Rename
Delete
""" Expose zipp.Path as .zipfile.Path. Includes everything else in ``zipfile`` to match future usage. Just use: >>> from zipp.compat.overlay import zipfile in place of ``import zipfile``. Relative imports are supported too. >>> from zipp.compat.overlay.zipfile import ZipInfo The ``zipfile`` object added to ``sys.modules`` needs to be hashable (#126). >>> _ = hash(sys.modules['zipp.compat.overlay.zipfile']) """ import importlib import sys import types import zipp class HashableNamespace(types.SimpleNamespace): def __hash__(self): return hash(tuple(vars(self))) zipfile = HashableNamespace(**vars(importlib.import_module('zipfile'))) zipfile.Path = zipp.Path zipfile._path = zipp sys.modules[__name__ + '.zipfile'] = zipfile # type: ignore[assignment]
Save