summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Lib/test/test_weakref.py10
1 files changed, 6 insertions, 4 deletions
diff --git a/Lib/test/test_weakref.py b/Lib/test/test_weakref.py
index 9ec607e..2924313 100644
--- a/Lib/test/test_weakref.py
+++ b/Lib/test/test_weakref.py
@@ -602,21 +602,23 @@ class ReferencesTestCase(TestBase):
thresholds = gc.get_threshold()
gc.set_threshold(1, 1, 1)
gc.collect()
+ class A:
+ pass
def callback(*args):
pass
- referenced = C()
+ referenced = A()
- a = C()
+ a = A()
a.a = a
a.wr = makeref(referenced)
try:
# now make sure the object and the ref get labeled as
# cyclic trash:
- a = C()
- a.wrc = weakref.ref(referenced, callback)
+ a = A()
+ weakref.ref(referenced, callback)
finally:
gc.set_threshold(*thresholds)