Re: On threads and constructors

2005-12-30 Thread Peter Hansen
[EMAIL PROTECTED] wrote: > I have a class: > > class ServerThreadManager(threading.Thread): > def __init__(self): > threading.Thread.__init__(self) > # and a bunch of constructor statements > > def run(self): > self.ReqHandlingLoop() > > # and a bunch of other

On threads and constructors

2005-12-30 Thread techiepundit
I have a class: class ServerThreadManager(threading.Thread): def __init__(self): threading.Thread.__init__(self) # and a bunch of constructor statements def run(self): self.ReqHandlingLoop() # and a bunch of other methods ServerObj = ServerThreadManager() pr