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 24788eb commit b8eccf7Copy full SHA for b8eccf7
Doc/library/zipimport.rst
@@ -188,7 +188,7 @@ Here is an example that imports a module from a ZIP archive - note that the
188
189
.. code-block:: shell-session
190
$ unzip -l example_archive.zip
191
- Archive: example.zip
+ Archive: example_archive.zip
192
Length Date Time Name
193
-------- ---- ---- ----
194
8467 05-11-25 12:29 example.py
@@ -201,5 +201,5 @@ Here is an example that imports a module from a ZIP archive - note that the
201
>>> sys.path.insert(0, 'example_archive.zip') # Add .zip file to front of path
202
>>> import example
203
>>> example.__file__
204
- 'example.zip/example.py'
+ 'example_archive.zip/example.py'
205
0 commit comments