diff options
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/crashers/file_threads.py | 8 |
1 files changed, 8 insertions, 0 deletions
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() |