flows no longer distort results in certain positions

This commit is contained in:
David Halter
2012-08-03 13:46:07 +02:00
parent 639457b9ec
commit c87899d9b0
2 changed files with 27 additions and 1 deletions

View File

@@ -1,3 +1,24 @@
def find_class():
""" This scope is special, because its in front of TestClass """
#? ['ret']
TestClass.ret
if 1:
#? ['ret']
TestClass.ret
class FindClass():
#? []
TestClass.ret
if a:
#? []
TestClass.ret
def find_class(self):
#? ['ret']
TestClass.ret
if 1:
#? ['ret']
TestClass.ret
# set variables, which should not be included, because they don't belong to the
# class