diff options
author | Guido van Rossum <guido@python.org> | 1996-06-26 19:26:55 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1996-06-26 19:26:55 (GMT) |
commit | a95a1405a8c13f2deb3f79ddb2bae1d9e7e95397 (patch) | |
tree | c926abd3ddc76c546861095260b0a26f044fa0bb /Doc/ref | |
parent | 7710f1f00c253ee0b35fc6ae5783e958273e0e49 (diff) | |
download | cpython-a95a1405a8c13f2deb3f79ddb2bae1d9e7e95397.zip cpython-a95a1405a8c13f2deb3f79ddb2bae1d9e7e95397.tar.gz cpython-a95a1405a8c13f2deb3f79ddb2bae1d9e7e95397.tar.bz2 |
expr_list -> expression_list
Diffstat (limited to 'Doc/ref')
-rw-r--r-- | Doc/ref/ref5.tex | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/ref/ref5.tex b/Doc/ref/ref5.tex index 62cd9a7..b2fea3c 100644 --- a/Doc/ref/ref5.tex +++ b/Doc/ref/ref5.tex @@ -676,8 +676,8 @@ contain statements. \indexii{condition}{list} \begin{verbatim} -expr_list: or_expr ("," or_expr)* [","] -cond_list: condition ("," condition)* [","] +expression_list: or_expr ("," or_expr)* [","] +condintion_list: condition ("," condition)* [","] \end{verbatim} The only difference between expression lists and condition lists is |