mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-11 11:36:59 +07:00
This method is invoked during indexing and it shouldn't resolve references extensively. Related to this issue, the return type of PyClass.getMetaClassType() has been changed in order to be able to return weak metaclass types.
14 lines
116 B
Python
14 lines
116 B
Python
class M(type):
|
|
pass
|
|
|
|
|
|
__metaclass__ = M
|
|
|
|
|
|
class C(object):
|
|
__metaclass__ = type
|
|
|
|
|
|
class D(object):
|
|
pass
|