Sign in
android
/
platform
/
tools
/
idea
/
2250e7e055295bee73366d360d15ea0270573ef6
/
.
/
python
/
testData
/
inspections
/
PyMethodOverridingInspection
/
LessArgumentsPlusDefaults.py
blob: 4ef9eba2748598cd414d463dc28e670a5f1d9496 [
file
] [
log
] [
blame
]
class
B
:
def
foo
(
self
,
arg1
,
arg2
=
None
):
pass
class
C
(
B
):
def
foo
<
warning descr
=
"Signature of method 'C.foo()' does not match signature of base method in class 'B'"
>(
self
,
arg1
=
None
)</
warning
>:
#fail
pass