summaryrefslogtreecommitdiff
path: root/Grammar
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2011-12-15 15:43:56 -0500
committerBenjamin Peterson <benjamin@python.org>2011-12-15 15:43:56 -0500
commitcab0206d7c8c9e1ef2ccf9c4680d30bfd0d3512b (patch)
tree2053a7d16333e7fc0707146b392342a97753d395 /Grammar
parentb964fcdb84d3a8df2ecb91ba59140d30d72c62a6 (diff)
downloadcpython-cab0206d7c8c9e1ef2ccf9c4680d30bfd0d3512b.tar.gz
input() in this sense is gone
Diffstat (limited to 'Grammar')
-rw-r--r--Grammar/Grammar2
1 files changed, 1 insertions, 1 deletions
diff --git a/Grammar/Grammar b/Grammar/Grammar
index cea68de24c..544852cc48 100644
--- a/Grammar/Grammar
+++ b/Grammar/Grammar
@@ -13,7 +13,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;
-# eval_input is the input for the eval() and input() functions.
+# eval_input is the input for the eval() functions.
# NB: compound_stmt in single_input is followed by extra NEWLINE!
single_input: NEWLINE | simple_stmt | compound_stmt NEWLINE
file_input: (NEWLINE | stmt)* ENDMARKER