Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
tools
/
idea
/
02cf98d65c798d368fcec43ed64a001d513bdd4f
/
.
/
python
/
testData
/
codeInsight
/
classMRO
/
SixWithMetaclass.py
blob: 317453bd9370d6272d0d82b84a32d36ff92c3e72 [
file
] [
log
] [
blame
]
class
M
(
type
):
pass
class
B
(
object
):
pass
class
C
(
six
.
with_metaclass
(
M
,
B
)):
pass