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

brett.cannon python-checkins at python.org
Wed Aug 19 01:54:08 CEST 2009


Author: brett.cannon
Date: Wed Aug 19 01:54:07 2009
New Revision: 74521

Log:
Clean up a minor bit of wording.

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	Wed Aug 19 01:54:07 2009
@@ -229,8 +229,8 @@
     .. 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.
-        :exc:`ImportError` if the module cannot be found.
+        module. Should return :keyword:`None` if there is no source code or
+        raise :exc:`ImportError` if the module cannot be found.
 
     .. method:: get_filename(fullname)
 


More information about the Python-checkins mailing list