mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-15 02:59:33 +07:00
9 lines
114 B
Python
9 lines
114 B
Python
class A:
|
|
def m(self):
|
|
"""Abstract method."""
|
|
raise NotImplementedError
|
|
|
|
|
|
class B(A):
|
|
pass
|