Files
openide/python/testData/quickdoc/HoverOverOverloads.py
Semyon Proshev 8d877fbe29 PY-23247 Fixed: Shorten inferred type of zip function
Process overloads in PythonDocumentationProvider separately.
2017-09-22 15:52:17 +03:00

14 lines
135 B
Python

import typing
@typing.overload
def foo(p: int) -> int:
pass
@typing.overload
def foo(p: str) -> str:
pass
<the_ref>foo(1)