diff options
author | R. David Murray <rdmurray@bitdance.com> | 2009-06-25 17:37:57 (GMT) |
---|---|---|
committer | R. David Murray <rdmurray@bitdance.com> | 2009-06-25 17:37:57 (GMT) |
commit | 6601126233eb3c7ef25e0669b72d35f3708edc6f (patch) | |
tree | 400af2374a7bd34e692512e7912afcba4893ac71 /Doc | |
parent | c7071671c93a529871260d7c5866aa86ca5411d3 (diff) | |
download | cpython-6601126233eb3c7ef25e0669b72d35f3708edc6f.zip cpython-6601126233eb3c7ef25e0669b72d35f3708edc6f.tar.gz cpython-6601126233eb3c7ef25e0669b72d35f3708edc6f.tar.bz2 |
Merged revisions 73511 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r73511 | r.david.murray | 2009-06-22 18:11:04 -0400 (Mon, 22 Jun 2009) | 2 lines
Improve English phrasing.
........
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/functions.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst index 732dfa2..a999e63 100644 --- a/Doc/library/functions.rst +++ b/Doc/library/functions.rst @@ -154,7 +154,7 @@ are always available. They are listed here in alphabetical order. ``'exec'`` if *source* consists of a sequence of statements, ``'eval'`` if it consists of a single expression, or ``'single'`` if it consists of a single interactive statement (in the latter case, expression statements that - evaluate to something else than ``None`` will be printed). + evaluate to something other than ``None`` will be printed). The optional arguments *flags* and *dont_inherit* control which future statements (see :pep:`236`) affect the compilation of *source*. If neither |