Sign in
android
/
platform
/
tools
/
idea
/
c810bbf46e7246636afe1d18947a460cedc5d24d
/
.
/
python
/
testData
/
completion
/
superInitKwParamsNotOnlySelfAndKwArgs.after.py
blob: bb75c36acd17e1f2173b984601f0a47489d560db [
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
(
first
=)