1
0
forked from VimPlug/jedi

Make Ellipsis without list in Callable work, fixes #1475

This commit is contained in:
Dave Halter
2020-02-03 09:25:41 +01:00
parent 3ad3dc08b8
commit a49c757b8a
2 changed files with 13 additions and 7 deletions

View File

@@ -436,6 +436,12 @@ def the_callable() -> float: ...
#? float()
call3_pls()(the_callable)[0]
def call4_pls(fn: typing.Callable[..., TYPE_VARX]) -> typing.Callable[..., TYPE_VARX]:
return ""
#? int()
call4_pls(lambda x: 1)()
# -------------------------
# TYPE_CHECKING
# -------------------------