Sign in
android
/
platform
/
tools
/
idea
/
2250e7e055295bee73366d360d15ea0270573ef6
/
.
/
python
/
testData
/
completion
/
fieldReassignment.py
blob: 86a724683dcecf50ba62dc7245923a850247dae9 [
file
] [
log
] [
blame
]
class
C1
(
object
):
def
method1
(
self
):
pass
class
Test
(
object
):
def
__init__
(
self
,
x
):
self
.
x
=
x
self
.
x
=
C1
()
self
.
x
.
meth
<
caret
>