Hello
I have questions about threading:
import threading
class myThread(threading.Thread):
def run(self):
print('hello,threads')
if __name__=='__main__':
threads=myThread()
threads.start()Above program does't work at 'Run Module' in IDLE,but it works well under executing scripts.Is it anything wrong? WindowXP,Python 3.0 Thanks.
-- http://mail.python.org/mailman/listinfo/python-list
