Sign in
android
/
platform
/
tools
/
idea
/
2250e7e055295bee73366d360d15ea0270573ef6
/
.
/
python
/
testData
/
completion
/
superInitKwParamsNotOnlySelfAndKwArgs.py
blob: 26ee505368a047963118bf38a4e6d17bf1ddde3f [
file
] [
log
] [
blame
]
class
A
:
def
__init__
(
self
,
first
=
True
):
pass
class
B
(
A
):
def
__init__
(
self
,
*
args
,
**
kwargs
):
super
(
B
,
self
).
__init__
(*
args
,
**
kwargs
)
b
=
B
(
fir
<
caret
>)