mirror of https://github.com/python/cpython
changed import to support NAME.NAME...NAME
This commit is contained in:
parent
03d4c260e3
commit
4a1da26891
|
@ -40,7 +40,8 @@ break_stmt: 'break'
|
|||
continue_stmt: 'continue'
|
||||
return_stmt: 'return' [testlist]
|
||||
raise_stmt: 'raise' test [',' test]
|
||||
import_stmt: 'import' NAME (',' NAME)* | 'from' NAME 'import' ('*' | NAME (',' NAME)*)
|
||||
import_stmt: 'import' dotted_name (',' dotted_name)* | 'from' dotted_name 'import' ('*' | NAME (',' NAME)*)
|
||||
dotted_name: NAME ('.' NAME)*
|
||||
global_stmt: 'global' NAME (',' NAME)*
|
||||
access_stmt: 'access' ('*' | NAME (',' NAME)*) ':' accesstype (',' accesstype)*
|
||||
accesstype: NAME+
|
||||
|
|
Loading…
Reference in New Issue