Merged revisions 85276 via svnmerge from
svn+ssh://svn.python.org/python/branches/py3k
........
r85276 | georg.brandl | 2010-10-06 12:35:24 +0200 (Mi, 06 Okt 2010) | 1 line
Fix the suspicious builder not to write CRLF, update suspicious file and add instructions to Makefile.
........
diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst
index c1a576c..efcac08 100644
--- a/Doc/library/functions.rst
+++ b/Doc/library/functions.rst
@@ -142,7 +142,7 @@
.. function:: compile(source, filename, mode, flags=0, dont_inherit=False)
Compile the *source* into a code or AST object. Code objects can be executed
- by:func:`exec` or :func:`eval`. *source* can either be a string or an AST
+ by :func:`exec` or :func:`eval`. *source* can either be a string or an AST
object. Refer to the :mod:`ast` module documentation for information on how
to work with AST objects.