summaryrefslogtreecommitdiffstats
path: root/Lib/test/crashers/new_logic.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/crashers/new_logic.py')
-rw-r--r--Lib/test/crashers/new_logic.py10
1 files changed, 0 insertions, 10 deletions
diff --git a/Lib/test/crashers/new_logic.py b/Lib/test/crashers/new_logic.py
deleted file mode 100644
index 1ae1ff0..0000000
--- a/Lib/test/crashers/new_logic.py
+++ /dev/null
@@ -1,10 +0,0 @@
-"""
-Does not terminate: consume all memory without responding to Ctrl-C.
-I am not too sure why, but you can surely find out by gdb'ing a bit...
-"""
-
-class X(object):
- pass
-
-X.__new__ = X
-X()