Sign in
android
/
platform
/
tools
/
idea
/
2250e7e055295bee73366d360d15ea0270573ef6
/
.
/
python
/
testData
/
completion
/
superInitKwParamsNoCompletion.after.py
blob: d23842b34ae3d0d94782e2ce9b0998452dc77d5f [
file
] [
log
] [
blame
]
Tor Norbye
3a2425a5
2013-11-04 10:16:08 -0800
[
diff
] [
blame
]
1
class
A
:
2
def
__init__
(
self
,
first
=
True
,
second
=
False
):
pass
3
4
class
B
(
A
):
5
def
__init__
(
self
,
**
kwargs
):
A
.
__init__
(
self
,
first
=
False
)
6
7
b
=
B
(
fir
)