Sign in
android
/
platform
/
tools
/
idea
/
814f829cd44c28c7045e08b15bd7ee08890cbd80
/
.
/
python
/
testData
/
refactoring
/
pullup
/
instanceNotDeclaredInInit.after.py
blob: 812bd9ce6364e5c41d1b2a1c1b4dc11ac49605c4 [
file
] [
log
] [
blame
]
class
Parent
(
object
):
def
__init__
(
self
):
self
.
foo
=
12
class
Child
(
Parent
):
def
foo
(
self
):
self
.
foo
=
12