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