[wingide-users] python shell and threads
Sebastian Fey
sebastian.fey at web.de
Sun Oct 28 08:12:50 MDT 2007
Hi,
if i evaluate the follwoing code in wingide´s python shell the thread is
not started.
also if i pause debugging right before the last line (where the thread
is started) an try to start it manually in "debug-test" it is not started.
also this is no I/O problem. the thread isnt started at all, i do not
just get no output from the thread.
thanks for your help,
Sebastian
import threading
class Test( threading.Thread ):
def __init__( self ):
threading.Thread.__init__( self )
def run( self ):
print "hello wingide"
if __name__ == "__main__":
Test().start()
More information about the wingide-users
mailing list