Sign in
android
/
platform
/
tools
/
idea
/
814f829cd44c28c7045e08b15bd7ee08890cbd80
/
.
/
python
/
testData
/
refactoring
/
pullup
/
moveInstanceAttributesNoInit.after.py
blob: ec67fd6f663b0a4a94107b3e2050c1d9c0a77168 [
file
] [
log
] [
blame
]
class
Parent
:
def
__init__
(
self
):
self
.
instance_field
=
"eggs"
class
Child
(
Parent
):
def
__init__
(
self
):
Parent2
.
__init__
(
self
)