dontbugme <pythonbugsbugme...@spamavert.com> added the comment:

After asking at the IRC channel, posborne resolved the error:

<posborne> Also, the behaviour of exiting the main thread before all threads 
has exited is undefined.  Is the behaviour different if you add t.join() to the 
end of the script?

Code:
#!/usr/bin/env python
import threading

class MyThread (threading.Thread):
    def __init__(self):
        threading.Thread.__init__(self)
        
    def run(self):
        print 'hello, dude!'
        
t = MyThread()
t.start()
t.join()

----------
status: open -> closed

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue7680>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to