Sign in
android
/
platform
/
tools
/
idea
/
c810bbf46e7246636afe1d18947a460cedc5d24d
/
.
/
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'