mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-07 09:46:39 +07:00
Report error for abstract method in non-abstract class. GitOrigin-RevId: 824d45a310b95ada628d6e607ae1ced6e351d849
7 lines
100 B
Python
7 lines
100 B
Python
from abc import abstractmethod
|
|
|
|
|
|
class A:
|
|
@ab<caret>stractmethod
|
|
def meth(self):
|
|
... |