Sign in
android
/
platform
/
tools
/
idea
/
2250e7e055295bee73366d360d15ea0270573ef6
/
.
/
python
/
testData
/
intentions
/
PyConvertMethodToPropertyIntentionTest
/
simple.py
blob: ec8c4daecb41497fe738b51e92df1473d581db31 [
file
] [
log
] [
blame
]
class
MyClass
(
object
):
"""
My class to show intention.
"""
def
__init__
(
self
):
self
.
_x
=
None
def
x
<
caret
>(
self
):
return
self
.
_x
x
=
MyClass
().
x
()