1
0
forked from VimPlug/jedi

Fix a few last tests, now Jedi's working again, tests are passing.

This commit is contained in:
Dave Halter
2014-09-26 16:02:03 +02:00
parent 6f29e802c2
commit 4d7db35340
3 changed files with 5 additions and 4 deletions

View File

@@ -1552,7 +1552,8 @@ class NamePart(object):
return self._string
def __repr__(self):
return "<%s: %s>" % (type(self).__name__, self._string)
return "<%s: %s@%s,%s>" % (type(self).__name__, self._string,
self.start_pos[0], self.start_pos[1])
def get_code(self):
return self._string