mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 15:09:39 +07:00
Avoid using resolve when calculating deprecation messages GitOrigin-RevId: 813849bdaeb3819b445db600fc0efbcb014ed5c9
9 lines
132 B
Python
9 lines
132 B
Python
import warnings
|
|
|
|
@warnings.deprecated("deprecated")
|
|
class MyClass:
|
|
pass
|
|
|
|
|
|
var = <warning descr="deprecated">MyClass</warning>()
|