Re: [Tutor] Multi-thread environments

2006-03-31 Thread Liam Clarke
Thanks very much for that Kent, works fine and dandy now. >_< This is one to chalk up to experience. I copied the dicts as you said. Regards, Liam On 3/31/06, Kent Johnson <[EMAIL PROTECTED]> wrote: > Liam Clarke wrote: > > Hi all, > > > > I'm working in my first multi-threaded environments, an

Re: [Tutor] Multi-thread environments

2006-03-30 Thread Kent Johnson
Liam Clarke wrote: > Hi all, > > I'm working in my first multi-threaded environments, and I think I > might have just been bitten by that. > > class Parser: > def __init__(self, Q): > self.Q = Q > self.players = {} > self.teams = {} > > def sendData(self): > if not se

[Tutor] Multi-thread environments

2006-03-30 Thread Liam Clarke
Hi all, I'm working in my first multi-threaded environments, and I think I might have just been bitten by that. I having issue with one method in a parser of mine. Only the code I think is causing the issue is included below, I can do a full post to RAFB if requested, but there's a bit of it. Th