1
0
forked from VimPlug/jedi

fix problems (end_pos of positions was wrong) with user_scopes

This commit is contained in:
David Halter
2012-12-17 22:19:39 +01:00
parent 8bbd2108bd
commit 7e7006e142
2 changed files with 8 additions and 4 deletions

View File

@@ -483,7 +483,7 @@ class Flow(Scope):
for s in self.inits:
stmts.append(s.get_code(new_line=False))
stmt = ', '.join(stmts)
string = "%s %s:\n" % (self.command, vars, stmt)
string = "%s %s:\n" % (self.command, stmt)
string += super(Flow, self).get_code(True, indention)
if self.next:
string += self.next.get_code()
@@ -1235,7 +1235,7 @@ class PyFuzzyParser(object):
d.parent = self.module
self.start_pos = self.module.start_pos
self.end_pos = self.module.start_pos
self.module.end_pos = self.end_pos
def __repr__(self):
return "<%s: %s>" % (type(self).__name__, self.module)