diff --git a/Grammar/Grammar b/Grammar/Grammar index 1e9ce77530d..5af4483acfa 100644 --- a/Grammar/Grammar +++ b/Grammar/Grammar @@ -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+