Re: [Python-Dev] The zombi thread of the Tcl library

2011-05-04 Thread Victor Stinner
Le mercredi 04 mai 2011 à 12:05 +0200, Antoine Pitrou a écrit : > On Wed, 04 May 2011 10:58:42 +0200 > Victor Stinner wrote: > > > > Tcl_Finalize() exits the thread, but this function is never called in > > Python. Anyway, it is not possible to unload a module implemented in C. > > You could exp

Re: [Python-Dev] The zombi thread of the Tcl library

2011-05-04 Thread Antoine Pitrou
On Wed, 04 May 2011 10:58:42 +0200 Victor Stinner wrote: > > Tcl_Finalize() exits the thread, but this function is never called in > Python. Anyway, it is not possible to unload a module implemented in C. You could expose Tcl_Finalize() for debug purposes and call it in test_signal. Regards An

[Python-Dev] The zombi thread of the Tcl library

2011-05-04 Thread Victor Stinner
Hi, I have a question: would it be possible to mask all signals in the Tcl thread? To understand the question, let's see the context... I'm working on signals, especially on pthread_sigmask(), and I'm trying to understand test_signal failures. test_signal fails if the _tkinter module is loaded,