From bf138333ce006c0b3bc49ddd4379312171ef2aae Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Tue, 28 Aug 2007 18:54:44 +0000 Subject: Add a crasher for the thread-unsafety of file objects. --- Lib/test/crashers/file_threads.py | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 Lib/test/crashers/file_threads.py diff --git a/Lib/test/crashers/file_threads.py b/Lib/test/crashers/file_threads.py new file mode 100644 index 0000000..d82ad3c --- /dev/null +++ b/Lib/test/crashers/file_threads.py @@ -0,0 +1,8 @@ +# 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() -- cgit v0.12