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 dc21001 commit 548857fCopy full SHA for 548857f
Doc/library/zipimport.rst
@@ -199,7 +199,8 @@ Here is an example that imports a module from a ZIP archive - note that the
199
.. code-block:: pycon
200
201
>>> import sys
202
- >>> sys.path.insert(0, 'example_archive.zip') # Add .zip file to front of path
+ >>> # Add the archive to the front of the module search path
203
+ >>> sys.path.insert(0, 'example_archive.zip')
204
>>> import example
205
>>> example.__file__
206
'example_archive.zip/example.py'
0 commit comments