Files
openide/python/testData/quickdoc/InheritedMethod.py
2018-06-09 15:59:37 +03:00

13 lines
162 B
Python

# copied doc of inherited method
class A:
def foo(self):
"Doc from A.foo."
pass
class B(A):
def foo(self):
return None
b = B()
b.<the_ref>foo()