diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2016-06-23 02:46:51 (GMT) |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2016-06-23 02:46:51 (GMT) |
commit | 58d3f59c2f9b9b0e9d5f5c5f052a790c0bc005ca (patch) | |
tree | 362773ce340d63a5ddf01a02b17713811e0aa1b2 /Doc/library/importlib.rst | |
parent | 47e00e5c46ef458b1903ff75f2044ea29139cbc3 (diff) | |
parent | dcb6c88a240fea82da8867d1de1022a4555f22b4 (diff) | |
download | cpython-58d3f59c2f9b9b0e9d5f5c5f052a790c0bc005ca.zip cpython-58d3f59c2f9b9b0e9d5f5c5f052a790c0bc005ca.tar.gz cpython-58d3f59c2f9b9b0e9d5f5c5f052a790c0bc005ca.tar.bz2 |
Merge with 3.5
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 873ec44..656d51a 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. @@ -1090,6 +1099,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`. |