mirror of https://github.com/python/cpython
Push importlib ABC hierarchy chart.
This commit is contained in:
parent
4805fa862e
commit
a86565465a
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue