Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
tools
/
idea
/
3a2425a5aed1bef93dab954745ad5665265eb70b
/
.
/
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