Re: Threading on an old machine

2008-11-10 Thread Astley Le Jasper
On 10 Nov, 16:20, Terry Reedy <[EMAIL PROTECTED]> wrote: > Astley Le Jasper wrote: > > I have an application that put on an old machine with a fresh Xubuntu > > installation (with Python 2.5). But I can't get the threading to work > > > The application was written on a combination of Windows XP and

Re: Threading on an old machine

2008-11-10 Thread Terry Reedy
Astley Le Jasper wrote: I have an application that put on an old machine with a fresh Xubuntu installation (with Python 2.5). But I can't get the threading to work The application was written on a combination of Windows XP and OpenSuse and has been running without any problems using Eclipse/ Pyd

Re: Threading on an old machine

2008-11-10 Thread Astley Le Jasper
On 10 Nov, 11:07, Astley Le Jasper <[EMAIL PROTECTED]> wrote: > Sorry ... that should be: > > for sitename in mysites: >     log.info("define thread") > > thread_list[sitename]=threading.Thread(name=sitename,target=myproceedure, > args=(sitename,)) >     log.info("done") >     thread_list[sitename]

Re: Threading on an old machine

2008-11-10 Thread Astley Le Jasper
Sorry ... that should be: for sitename in mysites: log.info("define thread") thread_list[sitename]=threading.Thread(name=sitename,target=myproceedure, args=(sitename,)) log.info("done") thread_list[sitename].start() log.info("Started") -- http://mail.python.org/mailman/listinfo/p