Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
tools
/
idea
/
3a2425a5aed1bef93dab954745ad5665265eb70b
/
.
/
python
/
testData
/
inspections
/
PyMethodMayBeStaticInspection
/
superMethod.py
blob: 6df1a27e05d22a72b09385e9f43faa2b8765b4e1 [
file
] [
log
] [
blame
]
Tor Norbye
3a2425a
2013-11-04 10:16:08 -0800
[
diff
] [
blame^
]
1
class
A
:
2
def
f
(
self
,
a
):
3
print
"A"
4
5
class
B
(
A
):
6
def
f
(
self
,
a
):
7
print
self
.
b