Lines Matching refs:Uncollectable
60 class Uncollectable(object):
69 self.partner = Uncollectable(partner=self)
1134 if isinstance(obj, Uncollectable):
1156 # Clean Uncollectable from garbage
1157 uc = [e for e in gc.garbage if isinstance(e, Uncollectable)]
1159 if not isinstance(e, Uncollectable)]
1201 Uncollectable()
1202 Uncollectable()
1215 self.assertIsInstance(e, Uncollectable)
1217 # Now, let our callback handle the Uncollectable instances