mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
16 lines
139 B
Python
16 lines
139 B
Python
import six
|
|
|
|
class M(type):
|
|
pass
|
|
|
|
|
|
class B(object):
|
|
pass
|
|
|
|
|
|
class D(object):
|
|
pass
|
|
|
|
|
|
class C(six.with_metaclass(M, B, D)):
|
|
pass |