IDLE replacement?

Adonis deltapigz at telocity.com
Tue Jun 5 16:41:36 EDT 2001


is there any other python script that could replace IDLE?

IDLE seems to crash on me everytime i attempt to create a thread and the
debug dumps all the code of IDLE at the same time locking the program
up.


is it my code? or a bug in IDLE?

if a bug is there any replacement for it? orjust stick to a text
editor+console.

[start]

from threading import Thread

class test(Thread):
    def __init__(self):
        i = 0
        Thread.__init__(self)

    def run(self):
        for i in range(10):
            print i

t = test()
t.start()

[stop]






More information about the Python-list mailing list