[Python-checkins] cpython: Push importlib ABC hierarchy chart.

andrew.svetlov python-checkins at python.org
Mon Aug 13 21:19:10 CEST 2012


http://hg.python.org/cpython/rev/1c8a6df94602
changeset:   78547:1c8a6df94602
user:        Andrew Svetlov <andrew.svetlov at gmail.com>
date:        Mon Aug 13 22:19:01 2012 +0300
summary:
  Push importlib ABC hierarchy chart.

files:
  Doc/library/importlib.rst |  15 +++++++++++++++
  1 files changed, 15 insertions(+), 0 deletions(-)


diff --git a/Doc/library/importlib.rst b/Doc/library/importlib.rst
--- a/Doc/library/importlib.rst
+++ b/Doc/library/importlib.rst
@@ -121,6 +121,21 @@
 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
 

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list