summaryrefslogtreecommitdiffstats
path: root/Grammar
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1993-10-27 13:25:30 (GMT)
committerGuido van Rossum <guido@python.org>1993-10-27 13:25:30 (GMT)
commit3b716046a0758fa87131fcd1ea415adb0b7a8d89 (patch)
treed097a25bfd6ced577777c1ad594c468118b58b95 /Grammar
parented49c5e3f83accbe0b5a7e320bc8e16900210d86 (diff)
downloadcpython-3b716046a0758fa87131fcd1ea415adb0b7a8d89.zip
cpython-3b716046a0758fa87131fcd1ea415adb0b7a8d89.tar.gz
cpython-3b716046a0758fa87131fcd1ea415adb0b7a8d89.tar.bz2
Committing the correct graminit.c; also changed confusing comments in Grammar.
Diffstat (limited to 'Grammar')
-rw-r--r--Grammar/Grammar3
1 files changed, 1 insertions, 2 deletions
diff --git a/Grammar/Grammar b/Grammar/Grammar
index 22a48f7..1094b09 100644
--- a/Grammar/Grammar
+++ b/Grammar/Grammar
@@ -77,8 +77,7 @@
# Start symbols for the grammar:
# single_input is a single interactive statement;
# file_input is a module or sequence of commands read from an input file;
-# expr_input is the input for the input() function;
-# eval_input is the input for the eval() function;
+# eval_input is the input for the eval() and input() functions;
# lambda_input is the input for the proposed lambda() function.
# NB: compound_stmt in single_input is followed by extra NEWLINE!