[issue7680] pythonw crash while attempting to start() a thread object

dontbugme report at bugs.python.org
Tue Jan 12 05:22:21 CET 2010


New submission from dontbugme <pythonbugsbugmenot at spamavert.com>:

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()

----------
components: IDLE
messages: 97622
nosy: dontbugme
severity: normal
status: open
title: pythonw crash while attempting to start() a thread object
type: crash
versions: Python 2.6

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue7680>
_______________________________________


More information about the Python-bugs-list mailing list