summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2009-11-13 22:17:17 (GMT)
committerBenjamin Peterson <benjamin@python.org>2009-11-13 22:17:17 (GMT)
commitc4a346cc550328512da8448d51061e964a60e741 (patch)
tree0b8ef01276cc0ec14147773d2d61db162ca4ee7d
parentccd640525b4e54a56b343f0eb9f6fbfc837d6a91 (diff)
downloadcpython-c4a346cc550328512da8448d51061e964a60e741.zip
cpython-c4a346cc550328512da8448d51061e964a60e741.tar.gz
cpython-c4a346cc550328512da8448d51061e964a60e741.tar.bz2
never mind about eval mode in this case
-rw-r--r--Doc/library/functions.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst
index ddece5a..7dc2a54 100644
--- a/Doc/library/functions.rst
+++ b/Doc/library/functions.rst
@@ -173,10 +173,10 @@ available. They are listed here in alphabetical order.
.. note::
- When compiling a string with multi-line statements in ``'single'`` or
- ``'eval'`` mode, input must be terminated by at least one newline
- character. This is to facilitate detection of incomplete and complete
- statements in the :mod:`code` module.
+ When compiling a string with multi-line statements in ``'single'``, input
+ must be terminated by at least one newline character. This is to
+ facilitate detection of incomplete and complete statements in the
+ :mod:`code` module.
.. versionchanged:: 2.3
The *flags* and *dont_inherit* arguments were added.