summaryrefslogtreecommitdiffstats
path: root/Doc/library/functions.rst
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2010-10-06 10:43:34 (GMT)
committerGeorg Brandl <georg@python.org>2010-10-06 10:43:34 (GMT)
commite5e6bc68f9c9aa127ea7ae390b1a0a7005b5d805 (patch)
treee6f4cf9315e167f1402284eea981a1fd7ffff061 /Doc/library/functions.rst
parentd098c3d94cd9bc74fa4d6f3a2752965e12860a03 (diff)
downloadcpython-e5e6bc68f9c9aa127ea7ae390b1a0a7005b5d805.zip
cpython-e5e6bc68f9c9aa127ea7ae390b1a0a7005b5d805.tar.gz
cpython-e5e6bc68f9c9aa127ea7ae390b1a0a7005b5d805.tar.bz2
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. ........
Diffstat (limited to 'Doc/library/functions.rst')
-rw-r--r--Doc/library/functions.rst2
1 files changed, 1 insertions, 1 deletions
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 @@ are always available. They are listed here in alphabetical order.
.. 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.