Files
openide/python/testData/quickdoc/InheritedMethod.py

13 lines
171 B
Python

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