summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2009-11-13 00:52:43 (GMT)
committerBenjamin Peterson <benjamin@python.org>2009-11-13 00:52:43 (GMT)
commit0089d75c56597a484f4126b9d4965683ce0fbe67 (patch)
tree72cde0bb19aea51e32ea8e4bc4d1a871f7f607a8 /Doc
parentb4b929ec861f75032775f98125df58fa8b333374 (diff)
downloadcpython-0089d75c56597a484f4126b9d4965683ce0fbe67.zip
cpython-0089d75c56597a484f4126b9d4965683ce0fbe67.tar.gz
cpython-0089d75c56597a484f4126b9d4965683ce0fbe67.tar.bz2
update to reality
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/importlib.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/importlib.rst b/Doc/library/importlib.rst
index 5b63bc5..7915c9d 100644
--- a/Doc/library/importlib.rst
+++ b/Doc/library/importlib.rst
@@ -252,8 +252,8 @@ are also provided to help in implementing the core ABCs.
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)