From: Andrew Svetlov Date: Mon, 13 Aug 2012 19:19:01 +0000 (+0300) Subject: Push importlib ABC hierarchy chart. X-Git-Tag: v3.3.0rc1~125 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a86565465a9b1199d5ce16ce42239996b8441fd1;p=thirdparty%2FPython%2Fcpython.git Push importlib ABC hierarchy chart. --- diff --git a/Doc/library/importlib.rst b/Doc/library/importlib.rst index 1ecee0bebb7e..d217b0a9d3c9 100644 --- a/Doc/library/importlib.rst +++ b/Doc/library/importlib.rst @@ -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