Files
openide/python/testData/codeInsight/classMRO/UnresolvedClassesImpossibleToBuildMRO.py
Andrey Vlasovskikh b37b0440d0 PY-11932 Put nulls for unresolved class types in MRO
Some of the ancestor class-like types may be unresolved. The best we
can do is to put nulls for all the unresolved classes to appropriate
places inside the MRO chain. What we used to do in this case it return
the empty sequence of the ancestors.
2014-12-22 14:05:31 +03:00

35 lines
450 B
Python

class EtagSupport(object):
pass
class LockableItem(EtagSupport):
pass
class Resource(LockableItem, _Unresolved):
pass
class CopyContainer(_Unresolved):
pass
class Navigation(_Unresolved):
pass
class Tabs(_Unresolved):
pass
class Collection(Resource):
pass
class Traversable(object):
pass
class ObjectManager(CopyContainer, Navigation, Tabs, _Unresolved, _Unresolved, Collection, Traversable):
pass