Home | History | Annotate | Download | only in test

Lines Matching refs:Weak

13 class Weak(object):
17 weak = Weak()
18 local.weak = weak
19 weaklist.append(weakref.ref(weak))
41 deadlist = [weak for weak in weaklist if weak() is None]
47 deadlist = [weak for weak in weaklist if weak() is None]