mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-14 18:05:27 +07:00
10 lines
233 B
Python
10 lines
233 B
Python
from warnings import deprecated
|
|
|
|
class Spam:
|
|
@deprecated("There is enough spam in the world")
|
|
def __add__(self, other: object) -> object:
|
|
pass
|
|
|
|
|
|
Spam() <warning descr="There is enough spam in the world">+</warning> 1
|