Sign in
android
/
platform
/
tools
/
idea
/
c810bbf46e7246636afe1d18947a460cedc5d24d
/
.
/
python
/
testData
/
inspections
/
PyMethodOverridingInspection
/
ExtraKwargs.py
blob: 407d101ae98e7717402c64dfa2491bc37960fead [
file
] [
log
] [
blame
]
Tor Norbye
3a2425a5
2013-11-04 10:16:08 -0800
[
diff
] [
blame
]
1
class
B
:
2
def
foo
(
self
,
x
=
1
):
3
pass
4
5
6
class
C
(
B
):
7
def
foo
(
self
,
**
kwargs
):
8
pass