Sign in
android
/
platform
/
tools
/
idea
/
c810bbf46e7246636afe1d18947a460cedc5d24d
/
.
/
python
/
testData
/
completion
/
superInitKwParamsNoCompletion.py
blob: 202add70704c04c10282adb5e5c28739fcebd7bc [
file
] [
log
] [
blame
]
class
A
:
def
__init__
(
self
,
first
=
True
,
second
=
False
):
pass
class
B
(
A
):
def
__init__
(
self
,
**
kwargs
):
A
.
__init__
(
self
,
first
=
False
)
b
=
B
(
fir
<
caret
>)