blob: 317453bd9370d6272d0d82b84a32d36ff92c3e72 [file] [log] [blame]
Tor Norbye3a2425a2013-11-04 10:16:08 -08001class M(type):
2 pass
3
4
5class B(object):
6 pass
7
8
9class C(six.with_metaclass(M, B)):
10 pass