Memory imporvements

This commit is contained in:
Tristan B. Kildaire 2015-09-24 12:46:51 +02:00
parent 891c5cc34a
commit c1b253e89f
1 changed files with 2 additions and 2 deletions

View File

@ -1,10 +1,10 @@
import util
from util import Event
class TestClass(object):
def __init__(self):
self.called = []
self.onChanged = util.Event()
self.onChanged = Event()
def increment(self, title):
self.called.append(title)