Files
openide/python/testData/override/methodWithOverloadsInAnotherFile.py
Semyon Proshev 6eeb3b25be Update overriding method with overloads (PY-30287)
* Select implementation as super method, not an overload
* Copy all its overloads
* Add imports for decorators (e.g. typing.overload)
2018-06-29 20:59:42 +03:00

4 lines
86 B
Python

from methodWithOverloadsInAnotherFile_parent import Foo
class B(Foo):
<caret>pass