copletion in case of null in dataflow now works, also fixed case with isinstance with tuple (PY-1133)

This commit is contained in:
Dmitry Trofimov
2010-07-09 14:27:15 +04:00
parent 2e406fa5de
commit fad62da0f8
3 changed files with 22 additions and 0 deletions
@@ -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()
+9
View File
@@ -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>