Daily Archives: March 20, 2008

Python threading blues

Some Python fan please tell me that I’m missing something. Is this really the boilerplate necessary for creating even the simplest thread in Python? import threading class MyThread(threading.Thread): def __init__(self, arg, **kwargs): threading.Thread.__init__(self, **kwargs) self.arg = arg def run(self): print … Continue reading

Posted in Uncategorized | 3 Comments