Sign in
android
/
platform
/
tools
/
idea
/
2250e7e055295bee73366d360d15ea0270573ef6
/
.
/
python
/
testData
/
inspections
/
PyAttributeOutsideInitInspection
/
fromSuperHierarchy.py
blob: 28c64c009f544d7834d8f415c99560c9369044b4 [
file
] [
log
] [
blame
]
__author__
=
'ktisha'
class
Base
(
object
):
def
__init__
(
self
):
self
.
my
=
1
class
Child
(
Base
):
def
f
(
self
):
self
.
my
=
1