Files
openide/python/testData/deprecation/deprecatedProperty.py
2011-06-24 10:26:01 +02:00

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>