Files
openide/python/testData/codeInsight/classMRO/SixWithMetaclassWithAs.py
Semyon Proshev a0d7707e84 PY-21224 Fixed: False positive unresolved base method when using six.with_metaclass() and multiple inheritance
Support metaclass and several base classes in six.with_metaclass
2016-11-23 14:37:35 +03:00

16 lines
151 B
Python

from six import with_metaclass as w_m
class M(type):
pass
class B(object):
pass
class D(object):
pass
class C(w_m(M, B, D)):
pass