RE: Newbie question: SOLVED (how to keep a socket listening), but still some questions

2005-06-24 Thread Giovanni Tumiati
To all those that replied - thank you. I solved the problem I posted earlier. I'm embarrassed to admit that it was caused by the following: ... while 1: ## wait for a connection try: #...waiting for connection (client, address)=sa.accept() except sa.timeout: <--there is no such e

Re:Another solution to How do I know when a thread quits?

2005-06-08 Thread Giovanni Tumiati
On Tue, 07 Jun 2005 09:41:16 -0400, Peter Hansen wrote: On Tue, 07 Jun 2005 06:28:33 -0700, Prashanth Ellina wrote: > Hi, > > I have used the low-level thread module to write a multi-threaded app. > > tid = thread.start_new_thread(process, ()) > tid is an integer thread ident. > > the thread