diff options
author | Georg Brandl <georg@python.org> | 2007-10-21 10:01:56 +0000 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2007-10-21 10:01:56 +0000 |
commit | fa6179701c0dd7f2ecc21fe0ff6204a4e865094f (patch) | |
tree | ac38c75ca1bc9cab97329464e4aaf881b7f6f79e | |
parent | 148618245167e56ac4b9075881f2b790078c1cbc (diff) | |
download | cpython-git-fa6179701c0dd7f2ecc21fe0ff6204a4e865094f.tar.gz |
Remove duplicate crasher.
-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 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() |