1
0
forked from VimPlug/jedi

Fixed more parser tests.

This commit is contained in:
Dave Halter
2014-12-08 00:36:09 +01:00
parent fe8a99dfd5
commit d6595ad020
3 changed files with 4 additions and 19 deletions

View File

@@ -39,7 +39,7 @@ def check_error_statements(evaluator, module, pos):
if error_statement.first_type in ('import_from', 'import_name') \
and error_statement.first_pos < pos <= error_statement.next_start_pos:
return importer_from_error_statement(evaluator, module, error_statement, pos)
return None
return None, False
def importer_from_error_statement(evaluator, module, error_statement, pos):