Sign in
android
/
platform
/
tools
/
idea
/
c7287d14ff9afb2ae3cc26fa670a0da3aaf16965
/
.
/
python
/
testData
/
refactoring
/
rename
/
renamePropertyWithLambda.py
blob: 504045ba1e870fde029549f3cdcc7cb2436be822 [
file
] [
log
] [
blame
]
class
C
(
object
):
foo
=
property
(
lambda
self
:
'bar'
)
c
=
C
()
print
(
c
.
f
<
caret
>
oo
,
c
.
foo
)