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