mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
Show type hints only for the highlighted parameter GitOrigin-RevId: f55d8ecc27dcbca5e6c24c5ca347ea3995e69ca8
14 lines
389 B
Python
14 lines
389 B
Python
def foo(a: int, b: str, c: bool, d: list, e: set): ...
|
|
foo(<arg1>)
|
|
|
|
def foo1(a: int, b: str, c: bool, d: list, e: set): ...
|
|
foo1(1, <arg2>)
|
|
|
|
def foo2(a: int, b: str, c: bool, d: list, e: set): ...
|
|
foo2(1, "2", <arg3>)
|
|
|
|
def foo3(a: int, b: str, c: bool, d: list, e: set): ..
|
|
foo3(1, '2', TRUE, <arg4>)
|
|
|
|
def foo4(a: int, b: str, c: bool, d: list, e: set): ...
|
|
foo4(1, "2", TRUE, [1], <arg5>) |