Python/Tkinter: Are Tkinter StringVar (IntVar, Etc) Thread Safe?
Are Tkinter StringVar (IntVar, FloatVar, etc) thread safe, eg. can a background thread read or write to these objects? Or must I use a Queue to pass information between my backgrou
Solution 1:
Definitely go the Queue route. Nothing in Tkinter is setup for being threadsafe :(
Post a Comment for "Python/Tkinter: Are Tkinter StringVar (IntVar, Etc) Thread Safe?"