diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2016-06-23 02:46:34 (GMT) |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2016-06-23 02:46:34 (GMT) |
commit | dcb6c88a240fea82da8867d1de1022a4555f22b4 (patch) | |
tree | 69d79bbbeffa667cf5c77387a1ee1ae5df6c2e6f /Doc/library/importlib.rst | |
parent | 06a1fcbb0035c664fefc53ddb8df65cc03a537b7 (diff) | |
download | cpython-dcb6c88a240fea82da8867d1de1022a4555f22b4.zip cpython-dcb6c88a240fea82da8867d1de1022a4555f22b4.tar.gz cpython-dcb6c88a240fea82da8867d1de1022a4555f22b4.tar.bz2 |
Issue #27304: Source code links for sub-packages in the same file.
Patch by Yoni Lavi
Diffstat (limited to 'Doc/library/importlib.rst')
-rw-r--r-- | Doc/library/importlib.rst | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Doc/library/importlib.rst b/Doc/library/importlib.rst index 3302446..ff7cc91 100644 --- a/Doc/library/importlib.rst +++ b/Doc/library/importlib.rst @@ -211,6 +211,11 @@ Functions .. module:: importlib.abc :synopsis: Abstract base classes related to import +**Source code:** :source:`Lib/importlib/abc.py` + +-------------- + + The :mod:`importlib.abc` module contains all of the core abstract base classes used by :keyword:`import`. Some subclasses of the core abstract base classes are also provided to help in implementing the core ABCs. @@ -700,6 +705,10 @@ ABC hierarchy:: .. module:: importlib.machinery :synopsis: Importers and path hooks +**Source code:** :source:`Lib/importlib/machinery.py` + +-------------- + This module contains the various objects that help :keyword:`import` find and load modules. @@ -1082,6 +1091,11 @@ find and load modules. .. module:: importlib.util :synopsis: Utility code for importers + +**Source code:** :source:`Lib/importlib/util.py` + +-------------- + This module contains the various objects that help in the construction of an :term:`importer`. |