IMHO this shouldn't segfault:<br><br>import thread<br><br>while 1:<br> f = open("/tmp/dupa", "w")<br> thread.start_new_thread(f.close, ())<br> f.close()<br><br>while it does on cpython 2.5.1
, linux box.<br><br>May I consider this a bug?<br><br>