1
0
forked from VimPlug/jedi

Remove dedents from the parser tree. No need for them.

This commit is contained in:
Dave Halter
2016-09-11 13:03:29 +02:00
parent d748f6fad6
commit 1226962922
7 changed files with 21 additions and 8 deletions
+1 -1
View File
@@ -136,7 +136,7 @@ def _evaluate_for_statement_string(evaluator, string, module):
pseudo_cls = p.module.subscopes[0]
# First pick suite, then simple_stmt (-2 for DEDENT) and then the node,
# which is also not the last item, because there's a newline.
stmt = pseudo_cls.children[-1].children[-2].children[-2]
stmt = pseudo_cls.children[-1].children[-1].children[-2]
except (AttributeError, IndexError):
return []