From bc6c2b5c6b8f606e4c41c1548c2910da56a7b09c Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Wed, 1 Apr 2009 23:36:48 +0000 Subject: [PATCH] Explain a little about the explanation. --- Doc/library/importlib.rst | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Doc/library/importlib.rst b/Doc/library/importlib.rst index c768ebe1e45..8c103774b68 100644 --- a/Doc/library/importlib.rst +++ b/Doc/library/importlib.rst @@ -388,6 +388,11 @@ an :term:`importer`. Example ------- +Below is an example meta path importer that uses a dict for back-end storage +for source code. While not an optimal solution -- manipulations of +:attr:`__path__` on packages does not influence import -- it does illustrate +what little is required to implement an importer. + .. testcode:: """An importer where source is stored in a dict."""