summaryrefslogtreecommitdiffstats
path: root/Doc/library/codeop.rst
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2007-12-02 14:58:50 (GMT)
committerGeorg Brandl <georg@python.org>2007-12-02 14:58:50 (GMT)
commit584265b0010c660af21d3b22ac18fff0da678dd0 (patch)
treee8d6c884efe654560c7118d61b14296008a6f5b3 /Doc/library/codeop.rst
parentb15a8df51919ae428023df79fd078263d4d23c88 (diff)
downloadcpython-584265b0010c660af21d3b22ac18fff0da678dd0.zip
cpython-584265b0010c660af21d3b22ac18fff0da678dd0.tar.gz
cpython-584265b0010c660af21d3b22ac18fff0da678dd0.tar.bz2
Add more entries to the glossary.
Written by Jeff Wheeler for GHOP.
Diffstat (limited to 'Doc/library/codeop.rst')
-rw-r--r--Doc/library/codeop.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/codeop.rst b/Doc/library/codeop.rst
index 419e873..35430b4 100644
--- a/Doc/library/codeop.rst
+++ b/Doc/library/codeop.rst
@@ -43,8 +43,8 @@ To do just the former:
:exc:`OverflowError` or :exc:`ValueError` if there is an invalid literal.
The *symbol* argument determines whether *source* is compiled as a statement
- (``'single'``, the default) or as an expression (``'eval'``). Any other value
- will cause :exc:`ValueError` to be raised.
+ (``'single'``, the default) or as an :term:`expression` (``'eval'``). Any
+ other value will cause :exc:`ValueError` to be raised.
.. warning::