Sign in
android
/
platform
/
tools
/
idea
/
c810bbf46e7246636afe1d18947a460cedc5d24d
/
.
/
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
>