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