commit | fa6179701c0dd7f2ecc21fe0ff6204a4e865094f | [log] [tgz] |
---|---|---|
author | Georg Brandl <georg@python.org> | Sun Oct 21 10:01:56 2007 +0000 |
committer | Georg Brandl <georg@python.org> | Sun Oct 21 10:01:56 2007 +0000 |
tree | ac38c75ca1bc9cab97329464e4aaf881b7f6f79e | |
parent | 148618245167e56ac4b9075881f2b790078c1cbc [diff] |
Remove duplicate crasher.
diff --git a/Lib/test/crashers/file_threads.py b/Lib/test/crashers/file_threads.py deleted file mode 100644 index d82ad3c..0000000 --- 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()