Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
tools
/
idea
/
2e5965e996aad62ab1338b09d54caaf99ff3dd6a
/
.
/
python
/
testData
/
codeInsight
/
classMRO
/
CircularInheritance2.py
blob: de400f418664013a8bd3f1de6702ff743a19879e [
file
] [
log
] [
blame
]
Tor Norbye
3a2425a
2013-11-04 10:16:08 -0800
[
diff
] [
blame
]
1
from
CircularInheritance
import
Foo
2
3
4
class
X
(
object
):
5
pass
6
7
8
class
B
(
X
,
Foo
):
9
pass