summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorEric Snow <ericsnowcurrently@gmail.com>2013-10-03 21:03:29 (GMT)
committerEric Snow <ericsnowcurrently@gmail.com>2013-10-03 21:03:29 (GMT)
commit5c4b4c530f19436112518bd5c27b22d592015b3e (patch)
tree63424c4fe49df46c767681be692995d445060d65 /Doc
parent48b42ecd0f95e837eabd1177e43b7abddeca825e (diff)
downloadcpython-5c4b4c530f19436112518bd5c27b22d592015b3e.zip
cpython-5c4b4c530f19436112518bd5c27b22d592015b3e.tar.gz
cpython-5c4b4c530f19436112518bd5c27b22d592015b3e.tar.bz2
[issue19152] Revert 832579dbafd6.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/importlib.rst6
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
---------------------------------------------------