Skip to content

Commit

Permalink
Expand docs and tests for overlay.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaraco committed Aug 29, 2024
1 parent c23e549 commit 68991bf
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion zipp/compat/overlay.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
"""
Expose zipp.Path as .zipfile.Path
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
"""

import importlib
Expand Down

0 comments on commit 68991bf

Please sign in to comment.