diff --git a/test/completion/types.py b/test/completion/types.py index e67be4e1..f68ba0d6 100644 --- a/test/completion/types.py +++ b/test/completion/types.py @@ -5,7 +5,7 @@ #? ['imag'] int.imag -#? [] +#? ['is_integer'] int.is_integer #? ['is_integer'] diff --git a/test/static_analysis/comprehensions.py b/test/static_analysis/comprehensions.py index 8701b112..9b53048c 100644 --- a/test/static_analysis/comprehensions.py +++ b/test/static_analysis/comprehensions.py @@ -8,6 +8,8 @@ #! 12 type-error-not-iterable [a for a in 1] +# TODO wrong? +#! 10 type-error-too-many-arguments tuple(str(a) for a in [1]) #! 8 type-error-operation