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

benjamin.peterson python-checkins at python.org
Fri Nov 13 01:52:43 CET 2009


Author: benjamin.peterson
Date: Fri Nov 13 01:52:43 2009
New Revision: 76234

Log:
update to reality

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	Fri Nov 13 01:52:43 2009
@@ -252,8 +252,8 @@
         A concrete implementation of
         :meth:`importlib.abc.InspectLoader.get_code` that creates code objects
         from Python source code, by requesting the source code (using
-        :meth:`source_path` and :meth:`get_data`), converting it to standard
-        newlines, and compiling it with the built-in :func:`compile` function.
+        :meth:`source_path` and :meth:`get_data`) and compiling it with the
+        built-in :func:`compile` function.
 
     .. method:: get_source(fullname)
 


More information about the Python-checkins mailing list