mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-09 16:39:37 +07:00
Modifier inference for functions decorated with these decorators was fixed. Usages of these decorators are highlighted as deprecated.
12 lines
141 B
Python
12 lines
141 B
Python
import abc
|
|
|
|
|
|
class A:
|
|
@abc.abstractclassmethod
|
|
def foo(cls):
|
|
pass
|
|
|
|
@abc.abstractstaticmethod
|
|
def bar():
|
|
pass
|