]> granicus.if.org Git - python/commitdiff
Sorry, sorry! Ignore my previous two commits. I mixed up the version
authorArmin Rigo <arigo@tunes.org>
Thu, 3 Sep 2009 19:45:27 +0000 (19:45 +0000)
committerArmin Rigo <arigo@tunes.org>
Thu, 3 Sep 2009 19:45:27 +0000 (19:45 +0000)
of python with which I tried running the crashers.  They don't crash
the current HEAD.

Lib/test/crashers/new_logic.py [deleted file]
Lib/test/crashers/slot_tp_new.py [deleted file]

diff --git a/Lib/test/crashers/new_logic.py b/Lib/test/crashers/new_logic.py
deleted file mode 100644 (file)
index 1ae1ff0..0000000
+++ /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()
diff --git a/Lib/test/crashers/slot_tp_new.py b/Lib/test/crashers/slot_tp_new.py
deleted file mode 100644 (file)
index 061d7aa..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
-"""
-Infinite C recursion involving PyObject_GetAttr in slot_tp_new.
-"""
-
-class X(object):
-    class __metaclass__(type):
-        pass
-    __new__ = 5
-
-X.__metaclass__.__new__ = property(X)
-print X()