Sign in
android
/
platform
/
tools
/
idea
/
c810bbf46e7246636afe1d18947a460cedc5d24d
/
.
/
python
/
testData
/
inspections
/
PyUnresolvedReferencesInspection
/
baseClassAssignment.py
blob: a59c36b18e5a8db9bd1523a948e893e05ae4807a [
file
] [
log
] [
blame
]
class
A
(
object
):
def
foo
(
self
):
pass
C
=
A
class
B
(
C
):
pass
b
=
B
()
b
.
foo
()
#pass