[issue7190] Problems running threaded Tkinter program under OS X IDLE

2009-12-08 Thread Ronald Oussoren
Changes by Ronald Oussoren : -- status: pending -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http:/

[issue7190] Problems running threaded Tkinter program under OS X IDLE

2009-11-11 Thread Ronald Oussoren
Ronald Oussoren added the comment: summarizes the thread safety aspects for Apple GUI programs. Basicly all eventhandling

[issue7190] Problems running threaded Tkinter program under OS X IDLE

2009-11-10 Thread Ronald Oussoren
Ronald Oussoren added the comment: The "graphics" module runs Tk in a separate thread, which means it accesses the Apple GUI frameworks from a thread that is not the main thread. This is AFAIK not supported by Apple, which would explain why it doesn't work. I'll look for a link to the rele

[issue7190] Problems running threaded Tkinter program under OS X IDLE

2009-11-10 Thread Ned Deily
Ned Deily added the comment: The test program depends on an external third-party module graphics. >From the problem description and a web search, I assume the file is: http://mcsp.wartburg.edu/zelle/python/graphics.py Can you confirm that? Using that module, target.py runs on 10.5 invoki