diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2019-09-10 17:13:55 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-10 17:13:55 (GMT) |
commit | 63909cdc2ff4eec58cc2b56426f2c725ccd4ba2b (patch) | |
tree | 90bdffb394a4e436cc6ad39361c71994cf560cc7 | |
parent | 78c3949407580593f92968ea268630c36ebe6634 (diff) | |
download | cpython-63909cdc2ff4eec58cc2b56426f2c725ccd4ba2b.zip cpython-63909cdc2ff4eec58cc2b56426f2c725ccd4ba2b.tar.gz cpython-63909cdc2ff4eec58cc2b56426f2c725ccd4ba2b.tar.bz2 |
bpo-37574: Mention helper functions for find_spec documentation (GH-14739)
(cherry picked from commit 9cbb97b29eac4b23e916a3233f26b60ac69e335b)
Co-authored-by: jdkandersson <51036209+jdkandersson@users.noreply.github.com>
-rw-r--r-- | Doc/library/importlib.rst | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Doc/library/importlib.rst b/Doc/library/importlib.rst index cb8360c..47e3dd0 100644 --- a/Doc/library/importlib.rst +++ b/Doc/library/importlib.rst @@ -274,6 +274,8 @@ ABC hierarchy:: parent package. If a spec cannot be found, ``None`` is returned. When passed in, ``target`` is a module object that the finder may use to make a more educated guess about what spec to return. + :func:`importlib.util.spec_from_loader` may be useful for implementing + concrete ``MetaPathFinders``. .. versionadded:: 3.4 @@ -323,7 +325,8 @@ ABC hierarchy:: within the :term:`path entry` to which it is assigned. If a spec cannot be found, ``None`` is returned. When passed in, ``target`` is a module object that the finder may use to make a more educated - guess about what spec to return. + guess about what spec to return. :func:`importlib.util.spec_from_loader` + may be useful for implementing concrete ``PathEntryFinders``. .. versionadded:: 3.4 |