Sign in
android
/
platform
/
tools
/
idea
/
c810bbf46e7246636afe1d18947a460cedc5d24d
/
.
/
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
>