Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
tools
/
idea
/
3a2425a5aed1bef93dab954745ad5665265eb70b
/
.
/
python
/
testData
/
codeInsight
/
classMRO
/
CircularInheritance2.py
blob: de400f418664013a8bd3f1de6702ff743a19879e [
file
] [
log
] [
blame
]
from
CircularInheritance
import
Foo
class
X
(
object
):
pass
class
B
(
X
,
Foo
):
pass