https://github.com/python/cpython/commit/0800ab51e7ecf136d833c3c5d15369765ae36210 commit: 0800ab51e7ecf136d833c3c5d15369765ae36210 branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: terryjreedy <[email protected]> date: 2026-07-04T04:20:24-04:00 summary:
[3.13] gh-75666: idlelib backport of iomenu change (GH-151958) (GH-152995) (#152996) [3.14]gh-75666: idlelib backport of iomenu change (GH-151958) (GH-152995) (cherry picked from commit 4413f328eafd38180b6873c58bbab5962c761f3a) Co-authored-by: Terry Jan Reedy <[email protected]> files: M Lib/idlelib/idle_test/test_iomenu.py diff --git a/Lib/idlelib/idle_test/test_iomenu.py b/Lib/idlelib/idle_test/test_iomenu.py index 976df3d5f7bbc6..90a23620354f31 100644 --- a/Lib/idlelib/idle_test/test_iomenu.py +++ b/Lib/idlelib/idle_test/test_iomenu.py @@ -23,11 +23,10 @@ def setUpClass(cls): cls.root = Tk() cls.root.withdraw() cls.editwin = EditorWindow(root=cls.root) - cls.io = iomenu.IOBinding(cls.editwin) + cls.io = cls.editwin.io @classmethod def tearDownClass(cls): - cls.io.close() cls.editwin._close() del cls.editwin cls.root.update_idletasks() _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3//lists/python-checkins.python.org Member address: [email protected]
