mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-14 18:05:27 +07:00
10 lines
168 B
Python
10 lines
168 B
Python
class A:
|
|
def m(self):
|
|
"""Abstract method."""
|
|
raise NotImplementedError('Should not be called directly')
|
|
|
|
|
|
class B(A):
|
|
def m(self):
|
|
pass
|