Files
openide/python/testData/override/docstring_after.py
Semyon Proshev 68b17b57c0 Make return type weak for functions decorated with unknown decorator (PY-28626)
Or decorator that could change return type.
2018-03-27 21:33:54 +03:00

15 lines
240 B
Python

from abc import abstractmethod
class Abstract(object):
@abstractmethod
def foo(self, bar):
pass
class Concrete(Abstract):
"""The docstring."""
def foo(self, bar):
<selection>super(Concrete, self).foo(bar)</selection>