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