1
0
forked from VimPlug/jedi

Fix fast parser tests.

This commit is contained in:
Dave Halter
2015-01-24 00:06:16 +01:00
parent 8569651bf4
commit 4d6afd3c99
8 changed files with 52 additions and 36 deletions
+1 -1
View File
@@ -23,7 +23,7 @@ class ParseError(Exception):
def __init__(self, msg, type, value, start_pos):
Exception.__init__(self, "%s: type=%r, value=%r, start_pos=%r" %
(msg, type, value, start_pos))
(msg, tokenize.tok_name[type], value, start_pos))
self.msg = msg
self.type = type
self.value = value