Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
tools
/
idea
/
3a2425a5aed1bef93dab954745ad5665265eb70b
/
.
/
python
/
testData
/
inspections
/
PyMethodOverridingInspection
/
LessParametersAndKwargs.py
blob: 502b9f6ff6f320dfadc8a7cabf400059b04c8497 [
file
] [
log
] [
blame
]
Tor Norbye
3a2425a
2013-11-04 10:16:08 -0800
[
diff
] [
blame^
]
1
class
B
:
2
def
foo
(
self
,
arg1
,
arg2
=
None
,
arg3
=
None
,
arg4
=
None
):
3
pass
4
5
6
class
C
(
B
):
7
def
foo
(
self
,
arg1
,
arg2
=
None
,
arg3
=
None
,
**
kwargs
):
#pass
8
pass