]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
#3569: eval() also accepts "exec"able code objects.
authorGeorg Brandl <georg@python.org>
Sat, 30 Aug 2008 10:03:09 +0000 (10:03 +0000)
committerGeorg Brandl <georg@python.org>
Sat, 30 Aug 2008 10:03:09 +0000 (10:03 +0000)
Doc/library/functions.rst

index 9586a3492aaf19c344165970453dea32249f5711..d463924f37b854c4ac49c8b8a8ec386b6ddcdadd 100644 (file)
@@ -381,10 +381,10 @@ available.  They are listed here in alphabetical order.
       >>> print eval('x+1')
       2
 
-   This function can also be used to execute arbitrary code objects (such as those
-   created by :func:`compile`).  In this case pass a code object instead of a
-   string.  The code object must have been compiled passing ``'eval'`` as the
-   *kind* argument.
+   This function can also be used to execute arbitrary code objects (such as
+   those created by :func:`compile`).  In this case pass a code object instead
+   of a string.  If the code object has been compiled with ``'exec'`` as the
+   *kind* argument, :func:`eval`\'s return value will be ``None``.
 
    Hints: dynamic execution of statements is supported by the :keyword:`exec`
    statement.  Execution of statements from a file is supported by the