[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
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