Sign in
android
/
platform
/
tools
/
idea
/
2250e7e055295bee73366d360d15ea0270573ef6
/
.
/
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"