summaryrefslogtreecommitdiff
path: root/Lib/test/crashers/borrowed_ref_1.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/crashers/borrowed_ref_1.py')
-rw-r--r--Lib/test/crashers/borrowed_ref_1.py29
1 files changed, 0 insertions, 29 deletions
diff --git a/Lib/test/crashers/borrowed_ref_1.py b/Lib/test/crashers/borrowed_ref_1.py
deleted file mode 100644
index b82f4644bf..0000000000
--- a/Lib/test/crashers/borrowed_ref_1.py
+++ /dev/null
@@ -1,29 +0,0 @@
-"""
-_PyType_Lookup() returns a borrowed reference.
-This attacks the call in dictobject.c.
-"""
-
-class A(object):
- pass
-
-class B(object):
- def __del__(self):
- print('hi')
- del D.__missing__
-
-class D(dict):
- class __missing__:
- def __init__(self, *args):
- pass
-
-
-d = D()
-a = A()
-a.cycle = a
-a.other = B()
-del a
-
-prev = None
-while 1:
- d[5]
- prev = (prev,)