Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
tools
/
idea
/
3a2425a5aed1bef93dab954745ad5665265eb70b
/
.
/
python
/
testData
/
inspections
/
PyUnresolvedReferencesInspection
/
superclassAsLocal.py
blob: 2462593fea638d799954261e38a1aee1d45148d3 [
file
] [
log
] [
blame
]
class
A
(
object
):
def
method
(
self
):
pass
C
=
A
class
B
(
C
):
pass
b
=
B
()
b
.
method
()
#Unresolved attribute reference 'method' for class 'B'