]> granicus.if.org Git - python/commitdiff
Remove duplicate crasher.
authorGeorg Brandl <georg@python.org>
Sun, 21 Oct 2007 10:01:56 +0000 (10:01 +0000)
committerGeorg Brandl <georg@python.org>
Sun, 21 Oct 2007 10:01:56 +0000 (10:01 +0000)
Lib/test/crashers/file_threads.py [deleted file]

diff --git a/Lib/test/crashers/file_threads.py b/Lib/test/crashers/file_threads.py
deleted file mode 100644 (file)
index d82ad3c..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-# An example for http://bugs.python.org/issue815646
-
-import thread
-
-while 1:
-    f = open("/tmp/dupa", "w")
-    thread.start_new_thread(f.close, ())
-    f.close()