Sign in
android
/
platform
/
tools
/
idea
/
2250e7e055295bee73366d360d15ea0270573ef6
/
.
/
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