Sign in
android
/
platform
/
tools
/
idea
/
2250e7e055295bee73366d360d15ea0270573ef6
/
.
/
python
/
testData
/
inspections
/
PyMethodOverridingInspection
/
ArgAndKwargs.py
blob: 55640981864df6ef992775989e1dce4e5b8025c3 [
file
] [
log
] [
blame
]
class
B
:
def
foo
(
self
,
**
kwargs
):
pass
class
C
(
B
):
def
foo
(
self
,
arg1
=
None
,
**
kwargs
):
# pass
pass