1
0
forked from VimPlug/jedi

ordering of variables should work now

This commit is contained in:
David Halter
2012-05-02 16:14:48 +02:00
parent 532c78b024
commit 29f05aad8f
6 changed files with 100 additions and 17 deletions

View File

@@ -1210,7 +1210,7 @@ class PyFuzzyParser(object):
def next(self):
""" Generate the next tokenize pattern. """
type, tok, position, dummy, self.parserline = self.gen.next()
type, tok, position, dummy, self.parserline = next(self.gen)
(self._tokenize_line_nr, indent) = position
if self.line_nr == self.user_line:
debug.dbg('user scope found [%s] =%s' % \