mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 06:05:01 +07:00
Fixed resolve and completion for locally assigned instance fields (PY-4279)
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
class C1(object):
|
||||
def method1(self):
|
||||
pass
|
||||
|
||||
class Test(object):
|
||||
def __init__(self, x):
|
||||
self.x = x
|
||||
self.x = C1()
|
||||
self.x.meth<caret>
|
||||
Reference in New Issue
Block a user