Sign in
android
/
platform
/
tools
/
idea
/
c810bbf46e7246636afe1d18947a460cedc5d24d
/
.
/
python
/
testData
/
quickFixes
/
PyMoveAttributeToInitQuickFixTest
/
addSuperCall.py
blob: 5cfb8c150ead9cd3e001c13b49e4166994fc30e2 [
file
] [
log
] [
blame
]
__author__
=
'ktisha'
class
Base
(
object
):
def
__init__
(
self
):
self
.
param
=
2
class
Child
(
Base
):
def
f
(
self
):
self
.<
caret
>
my
=
2