disable two failing multiple value tests. These are things jedi is not able to detect at the moment. It's not a huge problem, but it would be very nice if we could detect these as well. But there would be a need of restructuring var_args unpacking.

This commit is contained in:
Dave Halter
2014-06-05 11:54:46 +02:00
parent 6f83eb65ce
commit cf7b5b6b2b

View File

@@ -47,7 +47,7 @@ kwargs_test(c=3)
kwargs_test(b=2)
#! 22 type-error-keyword-argument
kwargs_test(b=2, c=3, d=4)
#! 11 type-error-multiple-values
##! 11 type-error-multiple-values
kwargs_test(b=2, c=3, a=4)
@@ -59,7 +59,7 @@ kwargs_nested(c=3)
kwargs_nested()
#! 19 type-error-keyword-argument
kwargs_nested(c=2, d=4)
#! 13 type-error-multiple-values
##! 13 type-error-multiple-values
kwargs_nested(c=2, a=4)
#! 13 type-error-multiple-values
kwargs_nested(b=3, c=2)