Files
openide/python/testData/paramInfo/SimplePopupWithHintsOff.py
Daniil Kalinin d47bd34358 PY-58497 Refactor parameter info logic for Python
Show type hints only for the highlighted parameter

GitOrigin-RevId: f55d8ecc27dcbca5e6c24c5ca347ea3995e69ca8
2024-07-02 09:57:32 +00:00

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>)