Files
openide/python/testData/deprecation/deprecatedLibrary.pyi
Andrey Vokin f2a322c6d9 PY-73107 Usages of @warnings.deprecated inside .pyi stubs are ignored
GitOrigin-RevId: 7682eff8c8ca8ae8241ddee3191add34ab2ac22e
2024-06-17 22:26:51 +00:00

6 lines
110 B
Python

from typing_extensions import deprecated
@deprecated("deprecated method")
def my_method(x: int) -> int: ...