]> granicus.if.org Git - python/commitdiff
input() in this sense is gone
authorBenjamin Peterson <benjamin@python.org>
Thu, 15 Dec 2011 20:43:56 +0000 (15:43 -0500)
committerBenjamin Peterson <benjamin@python.org>
Thu, 15 Dec 2011 20:43:56 +0000 (15:43 -0500)
Grammar/Grammar

index cea68de24c4179b07f2b0c64516bd048057627eb..544852cc485c1cd7e2c8e640733758ad4bbad166 100644 (file)
@@ -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