1
0
forked from VimPlug/jedi

fix start_pos of multiple elements

This commit is contained in:
David Halter
2013-02-08 15:14:43 +01:00
parent 4f060ddcd9
commit 6c0a0e889c
4 changed files with 16 additions and 9 deletions

View File

@@ -35,7 +35,7 @@ class RecursionDecorator(object):
def push_stmt(self, stmt):
self.current = RecursionNode(stmt, self.current)
if self._check_recursion():
debug.warning('catched recursion', stmt)
debug.warning('catched recursion', stmt, stmt.start_pos)
self.pop_stmt()
return True
return False