resolved little ordering problem

This commit is contained in:
David Halter
2012-06-22 21:46:54 +02:00
parent 38de9e92bb
commit ff436bd293
2 changed files with 11 additions and 3 deletions

View File

@@ -104,7 +104,7 @@ class A(object):
a.upper
#? []
a.append
a = list
a = list()
def __init__(self):
self.b = ""
self.b = 3
@@ -119,15 +119,21 @@ class A(object):
def before(self):
self.a = 1
#? int() str()
#? list() str() int()
self.a
#? ['after']
self.after
self.c = 3
#? set() int()
self.c
def after(self):
self.a = ''
c = set()
#? list()
A.a