1
0
forked from VimPlug/jedi

change an indentifier (avoid naming collisions)

This commit is contained in:
David Halter
2013-02-05 16:16:58 +01:00
parent d372e86317
commit 42450f48dc

View File

@@ -305,12 +305,12 @@ class Parser(object):
self.end_pos)
super = []
token_type, next = self.next()
if next == '(':
token_type, _next = self.next()
if _next == '(':
super = self._parse_parentheses()
token_type, next = self.next()
token_type, _next = self.next()
if next != ':':
if _next != ':':
debug.warning("class syntax: %s@%s" % (cname, self.start_pos[0]))
return None