Lines Matching refs:entry
23 cls.entry = tk.Entry(root)
31 del cls.text, cls.entry, cls.tentry
48 "Test pasting into an entry with and without a selection."
49 # Generated <<Paste>> fails for tk entry without empty select
51 for entry in self.entry, self.tentry:
53 with self.subTest(entry=entry, end=end, ans=ans):
54 entry.delete(0, 'end')
55 entry.insert(0, 'one')
56 entry.select_range(0, end)
57 entry.event_generate('<<Paste>>')
58 self.assertEqual(entry.get(), ans)
62 # See note above for entry.