mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-07 09:46:39 +07:00
Convert test files used with the default language level to Python 3 (PyAbstractInspectionTest) GitOrigin-RevId: debae3365955d6237c423197ec25a638dbd95dfb
11 lines
132 B
Python
11 lines
132 B
Python
import abc
|
|
|
|
|
|
class A(metaclass=abc.ABCMeta):
|
|
@abc.abstractproperty
|
|
def foo(self):
|
|
pass
|
|
|
|
|
|
class C(A):
|
|
foo = 'bar' |