[Python-Dev] [Python-checkins] cpython: Push importlib ABC hierarchy chart. (original) (raw)
Brett Cannon brett at python.org
Mon Aug 13 21:37:46 CEST 2012
- Previous message: [Python-Dev] [compatibility-sig] do all VMs implement the ast module? (was: Re: AST optimizer implemented in Python)
- Next message: [Python-Dev] [Python-checkins] cpython (merge 3.2 -> default): Merge 3.2
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
For documentation, this appears to be for http://bugs.python.org/issue15628 .
On Mon, Aug 13, 2012 at 3:19 PM, andrew.svetlov <python-checkins at python.org>wrote:
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
Python-checkins mailing list Python-checkins at python.org http://mail.python.org/mailman/listinfo/python-checkins -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://mail.python.org/pipermail/python-dev/attachments/20120813/3fb28fce/attachment.html>
- Previous message: [Python-Dev] [compatibility-sig] do all VMs implement the ast module? (was: Re: AST optimizer implemented in Python)
- Next message: [Python-Dev] [Python-checkins] cpython (merge 3.2 -> default): Merge 3.2
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]