Files
openide/python/testData/resolve/OverloadsAndNoImplementationInImportedClass.py
Semyon Proshev 947930f6c9 PY-22971 Fixed: Support @typing.overload in regular Python files, not only in Python stubs
Resolve:
* resolve to the first implementation in class, if there is no implementation, resolve to the first overload
* resolve to the last implementation in module, if there is no implementation, resolve to the last overload
2017-05-13 00:17:48 +03:00

5 lines
88 B
Python

from OverloadsAndNoImplementationInImportedClassDep import A
A().foo("abc")
<ref>