Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
tools
/
idea
/
3a2425a5aed1bef93dab954745ad5665265eb70b
/
.
/
python
/
testData
/
override
/
kwargs_after.py
blob: b73e1597e2c25885e7b44414bdf5c45543a1c66c [
file
] [
log
] [
blame
]
class
A
():
def
m
(
self
,
*
args
,
**
kwargs
):
pass
class
B
(
A
):
def
m
(
self
,
*
args
,
**
kwargs
):
<
selection
>
super
().
m
(*
args
,
**
kwargs
)</
selection
>