mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 00:20:54 +07:00
We don't have it elsewhere, thus, there is little sense in keeping it specifically for inherited documentation.
8 lines
116 B
Python
8 lines
116 B
Python
class Base:
|
|
def method(self):
|
|
"""D"""
|
|
|
|
|
|
class MyClass(Base):
|
|
def met<the_ref>hod(self):
|
|
pass |