1
0
forked from VimPlug/jedi

too many values and too few values errors implemented for list comprehensions tuple unpacking.

This commit is contained in:
Dave Halter
2015-12-12 04:16:49 +01:00
parent 28585dcdba
commit 106f6f7f5a
3 changed files with 20 additions and 3 deletions

View File

@@ -22,6 +22,8 @@ CODES = {
'type-error-not-iterable': (11, TypeError, None),
'type-error-isinstance': (12, TypeError, None),
'type-error-not-subscriptable': (13, TypeError, None),
'value-error-too-many-values': (13, ValueError, None),
'value-error-too-few-values': (13, ValueError, None),
}