Re: Need help in updating a global variable by a thread

2007-10-18 Thread dedalusenator
First off, apologies for posting code that had issues. My bad and promise next time to do due diligence. >learn about semaphores. Definitely will. >While this may not be an issue in this snippet Even when more than one user concurrently launches this python program? Let me read up on this like

Re: Need help in updating a global variable by a thread

2007-10-17 Thread Paul Hankin
On Oct 17, 7:48 pm, [EMAIL PROTECTED] wrote: > Hello Folks, > > My first posting here and I am a stuck in figuring out the exact way > to update a global variable from within a function that doesnt return > any value (because the function is a target of the thread and I dont > know how exactly retu

Re: Need help in updating a global variable by a thread

2007-10-17 Thread Bruno Desthuilliers
[EMAIL PROTECTED] a écrit : > Hello Folks, > > My first posting here and I am a stuck in figuring out the exact way > to update a global variable from within a function that doesnt return > any value (because the function is a target of the thread and I dont > know how exactly return would work in