Sign in
android
/
platform
/
tools
/
idea
/
c810bbf46e7246636afe1d18947a460cedc5d24d
/
.
/
python
/
testData
/
inspections
/
PyMethodOverridingInspection
/
ExtraKwargs.py
blob: 407d101ae98e7717402c64dfa2491bc37960fead [
file
] [
log
] [
blame
]
class
B
:
def
foo
(
self
,
x
=
1
):
pass
class
C
(
B
):
def
foo
(
self
,
**
kwargs
):
pass