diff --git a/test/completion/pep0484_typing.py b/test/completion/pep0484_typing.py index aabab6a7..cfdb9853 100644 --- a/test/completion/pep0484_typing.py +++ b/test/completion/pep0484_typing.py @@ -349,7 +349,8 @@ in_out2("") in_out2(str()) #? str() int() in_out2() -##? str() int() +# TODO this should actually be str() int(), because of the constraints. +#? float() in_out2(1.0) # -------------------------