instance variables are now working again, however, it's still a little bit strange

This commit is contained in:
David Halter
2012-08-31 01:23:12 +02:00
parent 74950ab502
commit 40d2c412a5
3 changed files with 14 additions and 8 deletions

View File

@@ -88,14 +88,14 @@ class A(object):
a = list()
def __init__(self):
self.b = ""
def before(self):
self.b = 3
# TODO should this be so?
#? int() str() list()
self.b
self.b = list
def before(self):
self.a = 1
#? list() str() int()
self.a