mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-23 07:50:55 +07:00
9 lines
147 B
Python
9 lines
147 B
Python
class A:
|
|
def m(self):
|
|
"""Abstract method."""
|
|
raise NotImplementedError('Should not be called directly')
|
|
|
|
|
|
class B(A):
|
|
pass
|