1
0
forked from VimPlug/jedi

Fix: print_stmt was not actually cared for in Python 2.7, #662.

This commit is contained in:
Dave Halter
2015-12-15 13:08:37 +01:00
parent 7141158484
commit ab91cfa3b5

View File

@@ -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,