From: Benjamin Peterson Date: Thu, 15 Dec 2011 20:43:56 +0000 (-0500) Subject: input() in this sense is gone X-Git-Tag: v3.3.0a1~605 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b3132bd9a5485d73baa662eaf8bede06b433e342;p=python input() in this sense is gone --- 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