diff options
author | Georg Brandl <georg@python.org> | 2007-10-21 10:01:56 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2007-10-21 10:01:56 (GMT) |
commit | fa6179701c0dd7f2ecc21fe0ff6204a4e865094f (patch) | |
tree | ac38c75ca1bc9cab97329464e4aaf881b7f6f79e /Lib | |
parent | 148618245167e56ac4b9075881f2b790078c1cbc (diff) | |
download | cpython-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.py | 8 |
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() |