mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 08:51:02 +07:00
9 lines
202 B
Python
9 lines
202 B
Python
class Foo:
|
|
@property
|
|
def bar(self):
|
|
import warnings
|
|
warnings.warn("this is deprecated", DeprecationWarning, 2)
|
|
|
|
foo = Foo()
|
|
foo.<warning descr="this is deprecated">bar</warning>
|