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