Sign in
android
/
platform
/
tools
/
idea
/
c810bbf46e7246636afe1d18947a460cedc5d24d
/
.
/
python
/
testData
/
inspections
/
AddCallSuper_after.py
blob: ee5b71cc5bfaa8143f86b86b1ca4295ca5e8f43f [
file
] [
log
] [
blame
]
class
A
:
def
__init__
(
self
,
c
,
a
=
5
,
*
arg
,
**
kwargs
):
pass
class
B
(
A
):
def
__init__
(
self
,
r
,
c
,
b
=
6
,
*
args
,
**
kwargs
):
A
.
__init__
(
self
,
c
,
*
args
,
**
kwargs
)
print
"Constructor B was called"