Commit 1685db01 authored by Nick Coghlan's avatar Nick Coghlan

s/path importer/path based finder/ (because the path based finder is not an...

s/path importer/path based finder/ (because the path based finder is not an importer and the simpler 'path finder' is too ambiguous)
parent 48fec053
...@@ -317,7 +317,7 @@ Glossary ...@@ -317,7 +317,7 @@ Glossary
import path import path
A list of locations (or :term:`path entries <path entry>`) that are 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 import, this list of locations usually comes from :data:`sys.path`, but
for subpackages it may also come from the parent package's ``__path__`` for subpackages it may also come from the parent package's ``__path__``
attribute. attribute.
...@@ -550,7 +550,7 @@ Glossary ...@@ -550,7 +550,7 @@ Glossary
path entry path entry
A single location on the :term:`import path` which the :term:`path 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 path entry finder
A :term:`finder` returned by a callable on :data:`sys.path_hooks` A :term:`finder` returned by a callable on :data:`sys.path_hooks`
...@@ -562,7 +562,7 @@ Glossary ...@@ -562,7 +562,7 @@ Glossary
entry finder` if it knows how to find modules on a specific :term:`path entry finder` if it knows how to find modules on a specific :term:`path
entry`. entry`.
path importer path based finder
One of the default :term:`meta path finders <meta path finder>` which One of the default :term:`meta path finders <meta path finder>` which
searches an :term:`import path` for modules. searches an :term:`import path` for modules.
......
This diff is collapsed.
...@@ -55,6 +55,10 @@ Tools/Demos ...@@ -55,6 +55,10 @@ Tools/Demos
Documentation Documentation
------------- -------------
- The "path importer" misnomer has been replaced with Eric Snow's
more-awkward-but-at-least-not-wrong suggestion of "path based finder" in
the import system reference docs
- Issue #15640: Document importlib.abc.Finder as deprecated. - Issue #15640: Document importlib.abc.Finder as deprecated.
- Issue #15630: Add an example for "continue" stmt in the tutorial. Patch by - Issue #15630: Add an example for "continue" stmt in the tutorial. Patch by
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment