8000 bpo-33987: IDLE - use ttk Frame for ttk widgets by terryjreedy · Pull Request #11395 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

bpo-33987: IDLE - use ttk Frame for ttk widgets #11395

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 7 commits into from
Jan 3, 2019
Merged
Diff view
Diff view
Prev Previous commit
test_searchbase whitespace
  • Loading branch information
terryjreedy authored Jan 3, 2019
commit e523da93490d95b9171180d3bf6a65a909b491a9
2 changes: 1 addition & 1 deletion Lib/idlelib/idle_test/test_searchbase.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def test_make_frame(self):
self.assertEqual(str(type(frame)), "<class 'tkinter.ttk.Frame'>")
# self.assertIsInstance(frame, Frame) fails when test is run by
# test_idle not run from IDLE editor. See issue 33987 PR.

frame, label = self.dialog.make_frame('testlabel')
self.assertEqual(label['text'], 'testlabel')

Expand Down
0