mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-06 08:00:18 +07:00
Convert test files used with the default language level to Python 3 (PyAbstractInspectionTest) GitOrigin-RevId: debae3365955d6237c423197ec25a638dbd95dfb
13 lines
230 B
Python
13 lines
230 B
Python
import abc
|
|
|
|
|
|
class A(metaclass=abc.ABCMeta):
|
|
@abc.abstractproperty
|
|
def foo(self):
|
|
pass
|
|
|
|
|
|
class <weak_warning descr="Class C must implement all abstract methods">C</weak_warning>(A):
|
|
def bar(self):
|
|
pass
|