| 1520 | # Provide thread-safe classes to be used from tkinter. |
| 1521 | |
| 1522 | class Tk(_ThreadSafe): BASE = tkinter.Tk |
| 1523 | class Frame(_ThreadSafe): BASE = tkinter.ttk.Frame |
| 1524 | class Button(_ThreadSafe): BASE = tkinter.ttk.Button |
| 1525 | class Entry(_ThreadSafe): BASE = tkinter.ttk.Entry |
no outgoing calls
no test coverage detected