Sign in
android
/
platform
/
tools
/
idea
/
c810bbf46e7246636afe1d18947a460cedc5d24d
/
.
/
python
/
testData
/
codeInsight
/
classMRO
/
CircularInheritance2.py
blob: de400f418664013a8bd3f1de6702ff743a19879e [
file
] [
log
] [
blame
]
from
CircularInheritance
import
Foo
class
X
(
object
):
pass
class
B
(
X
,
Foo
):
pass