1
0
forked from VimPlug/jedi

Some more tests are passing.

This commit is contained in:
Dave Halter
2016-09-03 03:06:38 +02:00
parent 2f6ba2a7ae
commit 00a8b3e4f1
5 changed files with 57 additions and 47 deletions

View File

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