diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2011-06-25 17:30:52 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2011-06-25 17:30:52 (GMT) |
commit | 935fa016f48d794253257e6a8e65c091593a7664 (patch) | |
tree | e402a0e86355432121cea4f4c0f5e299960944e7 | |
parent | 5778671073b53be1d009271664c57208968a08ee (diff) | |
parent | 2d826e8f4bca58b1406088e416305cf92d5b4d00 (diff) | |
download | cpython-935fa016f48d794253257e6a8e65c091593a7664.zip cpython-935fa016f48d794253257e6a8e65c091593a7664.tar.gz cpython-935fa016f48d794253257e6a8e65c091593a7664.tar.bz2 |
Merge heads.
-rw-r--r-- | Doc/library/zipimport.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/zipimport.rst b/Doc/library/zipimport.rst index 2f0fa38..4f17092 100644 --- a/Doc/library/zipimport.rst +++ b/Doc/library/zipimport.rst @@ -9,11 +9,11 @@ This module adds the ability to import Python modules (:file:`\*.py`, :file:`\*.py[co]`) and packages from ZIP-format archives. It is usually not needed to use the :mod:`zipimport` module explicitly; it is automatically used -by the built-in :keyword:`import` mechanism for ``sys.path`` items that are paths +by the built-in :keyword:`import` mechanism for :data:`sys.path` items that are paths to ZIP archives. -Typically, ``sys.path`` is a list of directory names as strings. This module -also allows an item of ``sys.path`` to be a string naming a ZIP file archive. +Typically, :data:`sys.path` is a list of directory names as strings. This module +also allows an item of :data:`sys.path` to be a string naming a ZIP file archive. The ZIP archive can contain a subdirectory structure to support package imports, and a path within the archive can be specified to only import from a subdirectory. For example, the path :file:`/tmp/example.zip/lib/` would only |