[issue16823] Python crashes on running tkinter code with threads

2013-01-14 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue16823] Python crashes on running tkinter code with threads

2013-01-04 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- resolution: invalid -> status: closed -> open ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue16823] Python crashes on running tkinter code with threads

2013-01-04 Thread Terry J. Reedy
Terry J. Reedy added the comment: What you are doing appears to be unsupported (invalid). From http://www.astro.washington.edu/users/rowen/TkinterSummary.html "all Tkinter access must be from the main thread (or more precisely, from the thread that calls the mainloop). Violating this is likely to

[issue16823] Python crashes on running tkinter code with threads

2012-12-30 Thread Sarbjit singh
New submission from Sarbjit singh: I have written a python tkinter code using threads so as the tkinter wizard updates automatically by tkinter mainloop running in the main thread and background process running in separate thread. But I noticed, that python crashes after some time when running