This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author dontbugme
Recipients dontbugme
Date 2010-01-12.04:22:19
SpamBayes Score 6.383255e-05
Marked as misclassified No
Message-id <1263270141.77.0.964688204265.issue7680@psf.upfronthosting.co.za>
In-reply-to
Content
PythonW.exe crash, tested under Windows 7 x86 / x64, Python v2.6.4.
The crash can be reproduced by opening and running the attached code in IDLE.
TY!

Error Message:
Microsoft Visual C++ Runtime Library
Runtime Error!
Program: C:\Python26\pythonw.exe
This application has requested the Runtime to terminate it in an unusual way.
Please contact the application's support team for more information.

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()
History
Date User Action Args
2010-01-12 04:22:21dontbugmesetrecipients: + dontbugme
2010-01-12 04:22:21dontbugmesetmessageid: <1263270141.77.0.964688204265.issue7680@psf.upfronthosting.co.za>
2010-01-12 04:22:20dontbugmelinkissue7680 messages
2010-01-12 04:22:20dontbugmecreate