Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
tools
/
idea
/
3a2425a5aed1bef93dab954745ad5665265eb70b
/
.
/
python
/
testData
/
completion
/
superInitKwParamsNotOnlySelfAndKwArgs.after.py
blob: bb75c36acd17e1f2173b984601f0a47489d560db [
file
] [
log
] [
blame
]
Tor Norbye
3a2425a
2013-11-04 10:16:08 -0800
[
diff
] [
blame^
]
1
class
A
:
2
def
__init__
(
self
,
first
=
True
):
3
pass
4
5
class
B
(
A
):
6
def
__init__
(
self
,
*
args
,
**
kwargs
):
7
super
(
B
,
self
).
__init__
(*
args
,
**
kwargs
)
8
9
b
=
B
(
first
=)