mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-31 04:07:30 +07:00
Convert test files used with the default language level to Python 3 (PyAbstractInspectionTest) GitOrigin-RevId: debae3365955d6237c423197ec25a638dbd95dfb
13 lines
171 B
Python
13 lines
171 B
Python
import abc
|
|
|
|
|
|
class A1(metaclass=abc.ABCMeta):
|
|
@abc.abstractmethod
|
|
def m1(self):
|
|
pass
|
|
|
|
|
|
class A2(A1):
|
|
@abc.abstractmethod
|
|
def m2(self):
|
|
pass |