diff options
author | Nick Coghlan <ncoghlan@gmail.com> | 2012-08-20 03:49:08 (GMT) |
---|---|---|
committer | Nick Coghlan <ncoghlan@gmail.com> | 2012-08-20 03:49:08 (GMT) |
commit | 1685db011dd8e5b808f7c176b05bfdb14c101789 (patch) | |
tree | 62da2d06f308c35a018a247ab1260deb5b9ff5f0 /Doc/glossary.rst | |
parent | 48fec0539157db38a993ededb32a8f312ec09fb9 (diff) | |
download | cpython-1685db011dd8e5b808f7c176b05bfdb14c101789.zip cpython-1685db011dd8e5b808f7c176b05bfdb14c101789.tar.gz cpython-1685db011dd8e5b808f7c176b05bfdb14c101789.tar.bz2 |
s/path importer/path based finder/ (because the path based finder is not an importer and the simpler 'path finder' is too ambiguous)
Diffstat (limited to 'Doc/glossary.rst')
-rw-r--r-- | Doc/glossary.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/glossary.rst b/Doc/glossary.rst index df09c38..b9782d8 100644 --- a/Doc/glossary.rst +++ b/Doc/glossary.rst @@ -317,7 +317,7 @@ Glossary import path A list of locations (or :term:`path entries <path entry>`) that are - searched by the :term:`path importer` for modules to import. During + searched by the :term:`path based finder` for modules to import. During import, this list of locations usually comes from :data:`sys.path`, but for subpackages it may also come from the parent package's ``__path__`` attribute. @@ -550,7 +550,7 @@ Glossary path entry A single location on the :term:`import path` which the :term:`path - importer` consults to find modules for importing. + based finder` consults to find modules for importing. path entry finder A :term:`finder` returned by a callable on :data:`sys.path_hooks` @@ -562,7 +562,7 @@ Glossary entry finder` if it knows how to find modules on a specific :term:`path entry`. - path importer + path based finder One of the default :term:`meta path finders <meta path finder>` which searches an :term:`import path` for modules. |