[Python-checkins] cpython: Use the proper term.

brett.cannon python-checkins at python.org
Mon Jul 9 20:40:45 CEST 2012


http://hg.python.org/cpython/rev/db2393edd0c5
changeset:   78030:db2393edd0c5
user:        Brett Cannon <brett at python.org>
date:        Mon Jul 09 14:40:38 2012 -0400
summary:
  Use the proper term.

files:
  Doc/library/pkgutil.rst |  8 ++++----
  1 files changed, 4 insertions(+), 4 deletions(-)


diff --git a/Doc/library/pkgutil.rst b/Doc/library/pkgutil.rst
--- a/Doc/library/pkgutil.rst
+++ b/Doc/library/pkgutil.rst
@@ -139,12 +139,12 @@
    *prefix* is a string to output on the front of every module name on output.
 
    .. note::
-      Only works wtih a :term:`loader` which defines a ``iter_modules()``
+      Only works with a :term:`finder` which defines a ``iter_modules()``
       method, which is non-standard but implemented by classes defined in this
       module.
 
    .. versionchanged:: 3.3
-      As of Python 3.3, the import system provides loaders by default, but they
+      As of Python 3.3, the import system provides finders by default, but they
       do not include the ``iter_modules()`` method required by this function.
 
 
@@ -176,11 +176,11 @@
       walk_packages(ctypes.__path__, ctypes.__name__ + '.')
 
    .. note::
-      Only works for a :term:`loader` which define a ``iter_modules()`` method,
+      Only works for a :term:`finder` which define a ``iter_modules()`` method,
       which is non-standard but implemented by classes defined in this module.
 
    .. versionchanged:: 3.3
-      As of Python 3.3, the import system provides loaders by default, but they
+      As of Python 3.3, the import system provides finders by default, but they
       do not include the ``iter_modules()`` method required by this function.
 
 

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


More information about the Python-checkins mailing list