diff options
author | Brett Cannon <brett@python.org> | 2012-08-02 21:50:06 (GMT) |
---|---|---|
committer | Brett Cannon <brett@python.org> | 2012-08-02 21:50:06 (GMT) |
commit | 077ef45a749ccaa0b7d426c83ca7f8df3523a0e3 (patch) | |
tree | 2a06d70f64f0252efc2b345f110e2060cef55e1e /Doc/library/importlib.rst | |
parent | 773468f3a994994ca7c5d6e2ae45f695bd690ccd (diff) | |
download | cpython-077ef45a749ccaa0b7d426c83ca7f8df3523a0e3.zip cpython-077ef45a749ccaa0b7d426c83ca7f8df3523a0e3.tar.gz cpython-077ef45a749ccaa0b7d426c83ca7f8df3523a0e3.tar.bz2 |
Update the What's New details for importlib based on doc/ABC changes.
Diffstat (limited to 'Doc/library/importlib.rst')
-rw-r--r-- | Doc/library/importlib.rst | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/Doc/library/importlib.rst b/Doc/library/importlib.rst index 774c654..df05ec4 100644 --- a/Doc/library/importlib.rst +++ b/Doc/library/importlib.rst @@ -141,9 +141,10 @@ are also provided to help in implementing the core ABCs. longer requires implementation of a ``find_module()`` method. -.. class:: MetaPathFinder(Finder) +.. class:: MetaPathFinder - An abstract base class representing a :term:`meta path finder`. + An abstract base class representing a :term:`meta path finder` and + inheriting from :class:`Finder`. .. versionadded:: 3.3 @@ -156,9 +157,10 @@ are also provided to help in implementing the core ABCs. package. If a loader cannot be found, ``None`` is returned. -.. class:: PathEntryFinder(Finder) +.. class:: PathEntryFinder - An abstract base class representing a :term:`path entry finder`. + An abstract base class representing a :term:`path entry finder` and + inheriting from :class:`Finder`. .. versionadded:: 3.3 |