Files
Petrandintellij-monorepo-bot f560f56c33 PY-12132 Support ABC classes (pep-3119)
Convert test files used with the default language level to Python 3 (PyAbstractInspectionTest)

GitOrigin-RevId: debae3365955d6237c423197ec25a638dbd95dfb
2025-04-09 14:53:20 +00:00

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