mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-21 17:52:27 +07:00
10 lines
96 B
Python
10 lines
96 B
Python
class M(type):
|
|
pass
|
|
|
|
|
|
class B(object):
|
|
pass
|
|
|
|
|
|
class C(six.with_metaclass(M, B)):
|
|
pass |