Push importlib ABC hierarchy chart.

This commit is contained in:
Andrew Svetlov 2012-08-13 22:19:01 +03:00
parent 4805fa862e
commit a86565465a
1 changed files with 15 additions and 0 deletions

View File

@ -121,6 +121,21 @@ 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.
ABC hierarchy::
object
+-- Finder
| +-- MetaPathFinder
| +-- PathEntryFinder
+-- Loader
+-- ResourceLoader --------+
+-- InspectLoader |
+-- ExecutionLoader --+
+-- FileLoader
+-- SourceLoader
+-- PyLoader
+-- PyPycLoader
.. class:: Finder