I note that several here are contemplating dropping single-process mode.
I use idle in single-process mode to interactively develop Tkinter code.
The value I find is in how I can try Tkinter commands one-at-a-time and see what happens without building and running a testbed.
Try it, you might like it:

        $ python -m idlelib.idle -n &

In the idle window:

        >>> import Tix
        >>> p = Tix.Entry(show=u'\xbf')
        >>> p.master.title('Password')
        >>> p.pack()
        >>> p.get()
<enter text>
        >>> p.get()

-Scott David Daniels

_______________________________________________
IDLE-dev mailing list
[email protected]
http://mail.python.org/mailman/listinfo/idle-dev

Reply via email to