mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
13 lines
171 B
Python
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()
|