[Python-checkins] r76728 - python/branches/py3k/Doc/library/importlib.rst

brett.cannon python-checkins at python.org
Thu Dec 10 01:24:21 CET 2009


Author: brett.cannon
Date: Thu Dec 10 01:24:21 2009
New Revision: 76728

Log:
Wording clarification.

Modified:
   python/branches/py3k/Doc/library/importlib.rst

Modified: python/branches/py3k/Doc/library/importlib.rst
==============================================================================
--- python/branches/py3k/Doc/library/importlib.rst	(original)
+++ python/branches/py3k/Doc/library/importlib.rst	Thu Dec 10 01:24:21 2009
@@ -229,8 +229,9 @@
     .. method:: source_path(fullname)
 
         An abstract method that returns the path to the source code for a
-        module. Should return :keyword:`None` if there is no source code or
-        raise :exc:`ImportError` if the module cannot be handled by the loader.
+        module. Should return :keyword:`None` if there is no source code.
+        Raises :exc:`ImportError` if the loader knows it cannot handle the
+        module.
 
     .. method:: get_filename(fullname)
 
@@ -282,8 +283,8 @@
         An abstract method which returns the path to the bytecode for the
         specified module, if it exists. It returns :keyword:`None`
         if no bytecode exists (yet).
-        Raises :exc:`ImportError` if the module cannot be handled by the
-        loader.
+        Raises :exc:`ImportError` if the loader knows it cannot handle the
+        module.
 
     .. method:: get_filename(fullname)
 


More information about the Python-checkins mailing list