forked from VimPlug/jedi
Fix: print_stmt was not actually cared for in Python 2.7, #662.
This commit is contained in:
@@ -108,6 +108,7 @@ class Parser(object):
|
|||||||
'pass_stmt': pt.KeywordStatement,
|
'pass_stmt': pt.KeywordStatement,
|
||||||
'global_stmt': pt.GlobalStmt,
|
'global_stmt': pt.GlobalStmt,
|
||||||
'nonlocal_stmt': pt.KeywordStatement,
|
'nonlocal_stmt': pt.KeywordStatement,
|
||||||
|
'print_stmt': pt.KeywordStatement,
|
||||||
'assert_stmt': pt.AssertStmt,
|
'assert_stmt': pt.AssertStmt,
|
||||||
'if_stmt': pt.IfStmt,
|
'if_stmt': pt.IfStmt,
|
||||||
'with_stmt': pt.WithStmt,
|
'with_stmt': pt.WithStmt,
|
||||||
|
|||||||
Reference in New Issue
Block a user