diff options
author | Eric Snow <ericsnowcurrently@gmail.com> | 2013-10-03 21:03:29 (GMT) |
---|---|---|
committer | Eric Snow <ericsnowcurrently@gmail.com> | 2013-10-03 21:03:29 (GMT) |
commit | 5c4b4c530f19436112518bd5c27b22d592015b3e (patch) | |
tree | 63424c4fe49df46c767681be692995d445060d65 /Doc | |
parent | 48b42ecd0f95e837eabd1177e43b7abddeca825e (diff) | |
download | cpython-5c4b4c530f19436112518bd5c27b22d592015b3e.zip cpython-5c4b4c530f19436112518bd5c27b22d592015b3e.tar.gz cpython-5c4b4c530f19436112518bd5c27b22d592015b3e.tar.bz2 |
[issue19152] Revert 832579dbafd6.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/importlib.rst | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/Doc/library/importlib.rst b/Doc/library/importlib.rst index 78187b8..efd027b 100644 --- a/Doc/library/importlib.rst +++ b/Doc/library/importlib.rst @@ -800,7 +800,7 @@ find and load modules. .. class:: ExtensionFileLoader(fullname, path) - A concrete implementation of :class:`importlib.abc.ExecutionLoader` for + A concrete implementation of :class:`importlib.abc.InspectLoader` for extension modules. The *fullname* argument specifies the name of the module the loader is to @@ -834,10 +834,6 @@ find and load modules. Returns ``None`` as extension modules do not have source code. - .. method:: get_filename(fullname) - - Returns :attr:`path`. - :mod:`importlib.util` -- Utility code for importers --------------------------------------------------- |