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

Need help in updating a global variable by a thread

2007-10-17 Thread dedalusenator
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 such a case). I am sure I am missing so