[Python-checkins] cpython: input() in this sense is gone

benjamin.peterson python-checkins at python.org
Thu Dec 15 21:44:21 CET 2011


http://hg.python.org/cpython/rev/4de895bb25f6
changeset:   73988:4de895bb25f6
parent:      73984:e979b26a9172
user:        Benjamin Peterson <benjamin at python.org>
date:        Thu Dec 15 15:43:56 2011 -0500
summary:
  input() in this sense is gone

files:
  Grammar/Grammar |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Grammar/Grammar b/Grammar/Grammar
--- 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

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list