Re: try/finally in threads

2007-07-03 Thread George Sakkis
On Jul 3, 5:05 am, "Diez B. Roggisch" <[EMAIL PROTECTED]> wrote: > George Sakkis wrote: > > I posted this on the Pyro list but I'm not sure if it's related > > specifically to Pyro. The "finally" clause below is not executed when > > f() runs on on a (daemon) thread and the program exits. DAEMON h

Re: try/finally in threads

2007-07-03 Thread Diez B. Roggisch
George Sakkis wrote: > I posted this on the Pyro list but I'm not sure if it's related > specifically to Pyro. The "finally" clause below is not executed when > f() runs on on a (daemon) thread and the program exits. DAEMON here is > a global Pyro.code.Daemon instance. > > def f(): >try: DAEM