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