Files
openide/python/testData/paramInfo/SimplePopupWithHintsOffAndDefaultArgument.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

3 lines
68 B
Python

def foo(a: int, b: int, c: str = "default"): ...
foo(1, 2, <arg1>)