Files
openide/python/testData/codeInsight/classMRO/SixWithMetaclass.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
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