diff options
author | Randy <69558016+san-juan1667@users.noreply.github.com> | 2023-04-22 23:33:50 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-22 23:33:50 (GMT) |
commit | 7bf94568a9a4101c72b8bf555a811028e5b45ced (patch) | |
tree | 7de160790ad60d510bfb7b751ee1c9b538cdba76 /Doc/library/pkgutil.rst | |
parent | 8cb2b0f953288ff8749e686c268097cdd5a393e2 (diff) | |
download | cpython-7bf94568a9a4101c72b8bf555a811028e5b45ced.zip cpython-7bf94568a9a4101c72b8bf555a811028e5b45ced.tar.gz cpython-7bf94568a9a4101c72b8bf555a811028e5b45ced.tar.bz2 |
gh-68654: Clarify subdirectories used by pkgutil.extend_path (#103701)
Clarify sub directories used by pkgutil.extend_path in the docs and the docstring
Diffstat (limited to 'Doc/library/pkgutil.rst')
-rw-r--r-- | Doc/library/pkgutil.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/pkgutil.rst b/Doc/library/pkgutil.rst index 788a02d..66d753b 100644 --- a/Doc/library/pkgutil.rst +++ b/Doc/library/pkgutil.rst @@ -25,9 +25,9 @@ support. from pkgutil import extend_path __path__ = extend_path(__path__, __name__) - This will add to the package's ``__path__`` all subdirectories of directories - on :data:`sys.path` named after the package. This is useful if one wants to - distribute different parts of a single logical package as multiple + For each directory on :data:`sys.path` that has a subdirectory that matches the + package name, add the subdirectory to the package's :attr:`__path__`. This is useful + if one wants to distribute different parts of a single logical package as multiple directories. It also looks for :file:`\*.pkg` files beginning where ``*`` matches the |