1
0
forked from VimPlug/jedi

fixes jedi-vim issue 9 - parser error in with statement

This commit is contained in:
David Halter
2012-10-16 10:07:12 +02:00
parent bddd097b93
commit 1d2debf38d
2 changed files with 6 additions and 1 deletions

View File

@@ -1702,7 +1702,8 @@ class PyFuzzyParser(object):
# multiple statements because of with
inits = []
first = True
while first or command == 'with' and tok != ':':
while first or command == 'with' \
and tok not in [':', '\n']:
statement, tok = \
self._parse_statement(added_breaks=added_breaks)
if command == 'except' and tok in added_breaks: