Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Lib/test/test_tkinter/test_simpledialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ def test_default_button(self):
def test_return_activates_default(self):
# <Return> invokes the default button.
d = self.create() # default 0
self.require_mapped(d.root)
d.root.focus_force()
d.root.update()
d.root.event_generate('<Return>')
Expand All @@ -59,6 +60,7 @@ def test_return_no_default(self):
# With no default button, <Return> rings the bell and leaves the dialog
# open instead of activating a button.
d = self.create(default=None)
self.require_mapped(d.root)
d.root.focus_force()
d.root.update()
bells = []
Expand Down
Loading