mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-05 16:36:56 +07:00
15 lines
189 B
Python
15 lines
189 B
Python
import abc
|
|
|
|
|
|
class A1(object):
|
|
__metaclass__ = abc.ABCMeta
|
|
|
|
@abc.abstractmethod
|
|
def m1(self):
|
|
pass
|
|
|
|
|
|
class A2(A1):
|
|
@abc.abstractmethod
|
|
def m2(self):
|
|
pass |