From: Guido van Rossum Date: Wed, 4 Mar 1992 16:41:24 +0000 (+0000) Subject: Allow NEWLINE* after eval input. X-Git-Tag: v0.9.8~490 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e785fbcfa7f25feaf3673b9666a80d786e46448c;p=thirdparty%2FPython%2Fcpython.git Allow NEWLINE* after eval input. --- diff --git a/Grammar/Grammar b/Grammar/Grammar index a93d3e224fd7..84f289841156 100644 --- a/Grammar/Grammar +++ b/Grammar/Grammar @@ -2,6 +2,9 @@ # Change log: +# 27-Feb-92: +# Allow NEWLINE* after eval input + # 16-Jan-92: # Added '*' as alternative for '+' in varargs syntax # (Not sure which alternative is better yet.) @@ -62,7 +65,7 @@ single_input: NEWLINE | simple_stmt | compound_stmt NEWLINE file_input: (NEWLINE | stmt)* ENDMARKER expr_input: testlist NEWLINE -eval_input: testlist ENDMARKER +eval_input: testlist NEWLINE* ENDMARKER funcdef: 'def' NAME parameters ':' suite parameters: '(' [varargslist] ')'