Lines Matching refs:cls
13 def with_tp_del(cls):
15 def __new__(cls, *args, **kwargs):
22 def without_gc(cls):
24 def __new__(cls, *args, **kwargs):
47 def _cleanup(cls):
48 cls.survivors.clear()
49 cls.errors.clear()
52 cls.del_calls.clear()
53 cls.tp_del_calls.clear()
57 def test(cls):
62 cls.del_calls.clear()
63 cls.tp_del_calls.clear()
67 if cls.errors:
68 raise cls.errors[0]
71 cls._cleanup()
360 nodes = [cls() for cls in classes]