Re: [Tutor] Tk code problem (Joseph Q.)

2005-04-13 Thread Joseph Quigley
It works if you run from the command line instead of inside IDLE. I thought IDLE was supposed to be able to run Tkinter programs since Python 2.3 but it doesn't seem to work? AFAIK IDLE runs on Linux. There are many other possibilities listed here: http://www.python.org/moin/IntegratedDeve

Re: [Tutor] Tk code problem (Joseph Q.)

2005-04-12 Thread Kent Johnson
Joseph Quigley wrote: Hi, It seems that whenever I click the QUIT button the TK windows freezes, then I have to CTRL-ALT-DEL to be able to shut it down. Here's the code (its not mine though): It works if you run from the command line instead of inside IDLE. I thought IDLE was supposed to be able

[Tutor] Tk code problem (Joseph Q.)

2005-04-12 Thread Joseph Quigley
Hi, It seems that whenever I click the QUIT button the TK windows freezes, then I have to CTRL-ALT-DEL to be able to shut it down. Here's the code (its not mine though): from Tkinter import * class App:     def __init__(self, master):     frame = Frame(master)     frame.pack()