Sign in
android
/
platform
/
tools
/
idea
/
2250e7e055295bee73366d360d15ea0270573ef6
/
.
/
python
/
testData
/
deprecation
/
deprecatedProperty.py
blob: da68d9a11bb4f2dec0230466c2701915e7666077 [
file
] [
log
] [
blame
]
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
>