Skip to content Skip to sidebar Skip to footer
Showing posts with the label Thread Safety

Is Tkinter's `after` Method Thread-safe?

Since tkinter isn't thread-safe, I often see people use the after method to queue some code for… Read more Is Tkinter's `after` Method Thread-safe?

Are Python Instance Variables Thread-safe?

OK, check following codes first: class DemoClass(): def __init__(self): #### I really … Read more Are Python Instance Variables Thread-safe?

Is Tkinter's `after` Method Thread-safe?

Since tkinter isn't thread-safe, I often see people use the after method to queue some code for… Read more Is Tkinter's `after` Method Thread-safe?