Files
openide/python/testData/quickdoc/DocOnImplementationWithOverloads.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

15 lines
175 B
Python

from typing import overload
@overload
def foo(param: str) -> str:
pass
@overload
def foo(param: int) -> int:
pass
def fo<the_ref>o(param: bool) -> bool:
pass