zip manifest builder
Definition at line 1764 of file __init__.py.
◆ build()
Build a dictionary similar to the zipimport directory
caches, except instead of tuples, store ZipInfo objects.
Use a platform-specific path separator (os.sep) for the path keys
for compatibility with pypy on Windows.
Definition at line 1770 of file __init__.py.
1770 def build(cls, path):
1771 """
1772 Build a dictionary similar to the zipimport directory
1773 caches, except instead of tuples, store ZipInfo objects.
1774
1775 Use a platform-specific path separator (os.sep) for the path keys
1776 for compatibility with pypy on Windows.
1777 """
1779 items = (
1780 (
1783 )
1785 )
1786 return dict(items)
1787
◆ load
The documentation for this class was generated from the following file:
- /home/liwuen/projects_dev/pqc-engineering-ssec-23/venv/lib/python3.12/site-packages/pip/_vendor/pkg_resources/__init__.py