mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-25 18:25:37 +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 |