mirror of
https://github.com/python/cpython.git
synced 2025-08-31 05:58:33 +00:00
Allow NEWLINE* after eval input.
This commit is contained in:
parent
d8b1d37bd8
commit
e785fbcfa7
1 changed files with 4 additions and 1 deletions
|
@ -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] ')'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue