summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2007-10-21 10:01:56 (GMT)
committerGeorg Brandl <georg@python.org>2007-10-21 10:01:56 (GMT)
commitfa6179701c0dd7f2ecc21fe0ff6204a4e865094f (patch)
treeac38c75ca1bc9cab97329464e4aaf881b7f6f79e /Lib
parent148618245167e56ac4b9075881f2b790078c1cbc (diff)
downloadcpython-fa6179701c0dd7f2ecc21fe0ff6204a4e865094f.zip
cpython-fa6179701c0dd7f2ecc21fe0ff6204a4e865094f.tar.gz
cpython-fa6179701c0dd7f2ecc21fe0ff6204a4e865094f.tar.bz2
Remove duplicate crasher.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/crashers/file_threads.py8
1 files changed, 0 insertions, 8 deletions
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()