Files
openide/python/testData/stubs/DeprecationMessageInClass.py
Andrey Vokin 673383c3da PY-61651 Deprecation highlighting with PEP 702 @deprecated decorator
GitOrigin-RevId: 426e7001d20849d7029fea55431d3e2cfae3eb11
2024-06-10 15:58:53 +00:00

6 lines
85 B
Python

from warnings import deprecated
@deprecated("Use Spam instead")
class Ham:
pass