blob: da68d9a11bb4f2dec0230466c2701915e7666077 [file] [log] [blame]
Tor Norbye3a2425a2013-11-04 10:16:08 -08001class Foo:
2 @property
3 def bar(self):
4 import warnings
5 warnings.warn("this is deprecated", DeprecationWarning, 2)
6
7foo = Foo()
8foo.<warning descr="this is deprecated">bar</warning>