mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
8 lines
169 B
Python
8 lines
169 B
Python
def hidden():
|
|
class Base:
|
|
def method(self):
|
|
"""Base class docstring."""
|
|
|
|
class Sub(Base):
|
|
def met<the_ref>hod(self):
|
|
pass |