Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
tools
/
idea
/
3a2425a5aed1bef93dab954745ad5665265eb70b
/
.
/
python
/
testData
/
completion
/
fieldReassignment.py
blob: 86a724683dcecf50ba62dc7245923a850247dae9 [
file
] [
log
] [
blame
]
Tor Norbye
3a2425a
2013-11-04 10:16:08 -0800
[
diff
] [
blame^
]
1
class
C1
(
object
):
2
def
method1
(
self
):
3
pass
4
5
class
Test
(
object
):
6
def
__init__
(
self
,
x
):
7
self
.
x
=
x
8
self
.
x
=
C1
()
9
self
.
x
.
meth
<
caret
>