Sign in
android
/
platform
/
tools
/
idea
/
2250e7e055295bee73366d360d15ea0270573ef6
/
.
/
python
/
testData
/
quickFixes
/
PyMoveAttributeToInitQuickFixTest
/
addSuperCall.py
blob: 5cfb8c150ead9cd3e001c13b49e4166994fc30e2 [
file
] [
log
] [
blame
]
Tor Norbye
3a2425a5
2013-11-04 10:16:08 -0800
[
diff
] [
blame
]
1
__author__
=
'ktisha'
2
3
class
Base
(
object
):
4
def
__init__
(
self
):
5
self
.
param
=
2
6
7
class
Child
(
Base
):
8
def
f
(
self
):
9
self
.<
caret
>
my
=
2