1
0
forked from VimPlug/jedi

Implement type[...]

This commit is contained in:
Dave Halter
2026-05-01 15:21:02 +02:00
parent 0702da22f2
commit 418598d8c1
4 changed files with 22 additions and 1 deletions
+5
View File
@@ -225,3 +225,8 @@ def check_newstyle_unions(u1: int | str, u2: list[int] | list[str]):
u2
#? int() str()
u2[1]
def use_type_with_annotation() -> type[int]: ...
#? int
use_type_with_annotation()