Re: tkinter mainloop

2014-11-20 Thread ast
"Rick Johnson" a écrit dans le message de news:3385be62-e21c-4efe-802e-8f7351155...@googlegroups.com... You don't need to call "mainloop()" when building Tkinter widgets on the command-line, but for *real* scripts i believe you'll need to. For instance, if you run the following code you wil

Re: tkinter mainloop

2014-11-19 Thread Rick Johnson
On Wednesday, November 19, 2014 5:23:38 AM UTC-6, Terry Reedy wrote: > On 11/19/2014 3:46 AM, ast wrote: > > mainloop() is a window method which starts the event > > manager which tracks for events (mouse, keyboard ...) to > > be send to the window. But if I forget the > > root.mainloop() in my pro

Re: tkinter mainloop

2014-11-19 Thread Terry Reedy
On 11/19/2014 3:46 AM, ast wrote: Hello mainloop() is a window method which starts the event manager which tracks for events (mouse, keyboard ...) to be send to the window. But if I forget the root.mainloop() in my program, it works well anyway, I cant see any failure. Why ? Second question, i