Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
tools
/
idea
/
3a2425a5aed1bef93dab954745ad5665265eb70b
/
.
/
python
/
testData
/
inspections
/
PyUnresolvedReferencesInspection
/
baseClassAssignment.py
blob: a59c36b18e5a8db9bd1523a948e893e05ae4807a [
file
] [
log
] [
blame
]
Tor Norbye
3a2425a
2013-11-04 10:16:08 -0800
[
diff
] [
blame^
]
1
class
A
(
object
):
2
def
foo
(
self
):
3
pass
4
5
6
C
=
A
7
8
9
class
B
(
C
):
10
pass
11
12
13
b
=
B
()
14
b
.
foo
()
#pass