1
0
forked from VimPlug/jedi

Fix a few fast parser tests.

This commit is contained in:
Dave Halter
2016-06-02 08:24:52 +02:00
parent ad8d730a57
commit 0c7894b3e6
4 changed files with 21 additions and 20 deletions

View File

@@ -663,7 +663,7 @@ class ErrorLeaf(Leaf):
def __repr__(self):
token_type = token.tok_name[self.original_type]
return "<%s: %s, %s)>" % (type(self).__name__, token_type, repr(self.value))
return "<%s: %s, %s)>" % (type(self).__name__, token_type, self.start_pos)
class IsScopeMeta(type):