commands after the current position are getting ignored now - with failed import tests

This commit is contained in:
David Halter
2012-05-01 15:45:01 +02:00
parent 453e003153
commit 80f2a3518d
5 changed files with 57 additions and 20 deletions

View File

@@ -27,6 +27,15 @@ class TestClass(object):
def ret(self, a1):
return a1
# should not work
#? []
var_local
#? []
var_inst
#? []
var_func
# instance
inst = TestClass(1)
#? ['var_class', 'var_func', 'var_inst', 'var_local']