1
0
forked from VimPlug/jedi

Start implementing GlobalStmt.

This commit is contained in:
Dave Halter
2014-10-17 15:13:45 +02:00
parent 6abafc40fa
commit f08811fba7
3 changed files with 14 additions and 2 deletions

View File

@@ -81,7 +81,7 @@ def convert(grammar, raw_node):
'yield_stmt': pr.KeywordStatement,
'del_stmt': pr.KeywordStatement,
'pass_stmt': pr.KeywordStatement,
'global_stmt': pr.KeywordStatement,
'global_stmt': pr.GlobalStmt,
'nonlocal_stmt': pr.KeywordStatement,
'assert_stmt': pr.KeywordStatement,
}