Lines Matching refs:root
19 cls.root = root = tk.Tk()
20 cls.root.withdraw()
21 pyshell.fix_x11_paste(root)
22 cls.text = tk.Text(root)
23 cls.entry = tk.Entry(root)
24 cls.tentry = ttk.Entry(root)
25 cls.spin = tk.Spinbox(root)
26 root.clipboard_clear()
27 root.clipboard_append('two')
32 cls.root.clipboard_clear()
33 cls.root.update_idletasks()
34 cls.root.destroy()
35 del cls.root