From: Georg Brandl Date: Sun, 21 Oct 2007 10:01:56 +0000 (+0000) Subject: Remove duplicate crasher. X-Git-Tag: v2.6a1~1150 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fa6179701c0dd7f2ecc21fe0ff6204a4e865094f;p=python Remove duplicate crasher. --- diff --git a/Lib/test/crashers/file_threads.py b/Lib/test/crashers/file_threads.py deleted file mode 100644 index d82ad3c286..0000000000 --- a/Lib/test/crashers/file_threads.py +++ /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()