Sign in
android
/
platform
/
tools
/
idea
/
c810bbf46e7246636afe1d18947a460cedc5d24d
/
.
/
python
/
testData
/
inspections
/
PyMethodOverridingInspection
/
DefaultArgument.py
blob: 20a91efce66b98b0e0c04de015861910d9c80361 [
file
] [
log
] [
blame
]
class
B
:
def
foo
(
self
,
arg1
):
pass
class
C
(
B
):
def
foo
(
self
,
arg1
,
arg2
=
None
):
#pass
pass