mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-07 15:35:40 +07:00
This recursion resulted in empty resolve result list for __new__ and a false positive in the unresolved references inspection.
5 lines
106 B
Python
5 lines
106 B
Python
class Test(object):
|
|
def __new__(cls, foo):
|
|
x = super(Test, cls)
|
|
return x.__new__(cls)
|