mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
copletion in case of null in dataflow now works, also fixed case with isinstance with tuple (PY-1133)
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
class A:
|
||||
def foo(self):
|
||||
if (self.is_good):
|
||||
y = self.xxx
|
||||
else:
|
||||
y = "str"
|
||||
return y
|
||||
def bar(self):
|
||||
self.foo().count()
|
||||
@@ -0,0 +1,9 @@
|
||||
class A:
|
||||
def foo(self):
|
||||
if (self.is_good):
|
||||
y = self.xxx
|
||||
else:
|
||||
y = "str"
|
||||
return y
|
||||
def bar(self):
|
||||
self.foo().cou<caret>
|
||||
Reference in New Issue
Block a user