Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
tools
/
idea
/
3a2425a5aed1bef93dab954745ad5665265eb70b
/
.
/
python
/
testData
/
override
/
singleStar_after.py
blob: f45f38e6066a703c809f5fd84fc4da674ad2dd74 [
file
] [
log
] [
blame
]
Tor Norbye
3a2425a
2013-11-04 10:16:08 -0800
[
diff
] [
blame^
]
1
class
A
:
2
def
f1
(
self
,
*,
a
=
1
):
3
pass
4
5
class
B
(
A
):
6
def
f1
(
self
,
*,
a
=
1
):
7
<
selection
>
super
().
f1
(
a
=
a
)</
selection
>