1
0
forked from VimPlug/jedi

Fix issues with the right count of parsers used.

This commit is contained in:
Dave Halter
2015-01-24 20:19:03 +01:00
parent 4d6afd3c99
commit 446f5b9018
4 changed files with 43 additions and 27 deletions

View File

@@ -301,8 +301,7 @@ class Parser(object):
if typ == token.OP:
typ = token.opmap[value]
#print(start_pos, tokenize.tok_name[typ], repr(value))
print(token.tok_name[typ], value, start_pos)
#print(token.tok_name[typ], repr(value), start_pos)
yield typ, value, prefix, start_pos
def __repr__(self):