]> granicus.if.org Git - python/commitdiff
Merged revisions 76771 via svnmerge from
authorBenjamin Peterson <benjamin@python.org>
Sun, 13 Dec 2009 00:36:41 +0000 (00:36 +0000)
committerBenjamin Peterson <benjamin@python.org>
Sun, 13 Dec 2009 00:36:41 +0000 (00:36 +0000)
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r76771 | benjamin.peterson | 2009-12-12 18:32:14 -0600 (Sat, 12 Dec 2009) | 1 line

  death to exec statement
........

Doc/library/functions.rst

index adde017436114ec50ad2d118acfa00af2e3d48e4..cdef34ab0d4b35a8adae28228c0407e0a8ecaba2 100644 (file)
@@ -142,9 +142,9 @@ 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 an :keyword:`exec` statement or evaluated by a call to :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.
+   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.
 
    The *filename* argument should give the file from which the code was read;
    pass some recognizable value if it wasn't read from a file (``'<string>'`` is