Fix refleak in test_gc
diff --git a/Lib/test/test_gc.py b/Lib/test/test_gc.py
index caf5a3d..9036975 100644
--- a/Lib/test/test_gc.py
+++ b/Lib/test/test_gc.py
@@ -551,6 +551,7 @@
         gc.set_debug(0)
         gc.callbacks.append(self.cb1)
         gc.callbacks.append(self.cb2)
+        self.othergarbage = []
 
     def tearDown(self):
         # Restore gc state
@@ -566,9 +567,9 @@
             if isinstance(obj, Uncollectable):
                 obj.partner = None
         del gc.garbage[:]
+        del self.othergarbage
         gc.collect()
 
-    othergarbage = []
     def preclean(self):
         # Remove all fluff from the system.  Invoke this function
         # manually rather than through self.setUp() for maximum