https://github.com/python/cpython/commit/1f8a87a29bc2231721171a1e74bd31c08b7b4bcb commit: 1f8a87a29bc2231721171a1e74bd31c08b7b4bcb branch: 3.12 author: Miss Islington (bot) <[email protected]> committer: hugovk <[email protected]> date: 2026-07-09T18:41:46Z summary:
[3.12] gh-146531: Broaden `wm_iconbitmap` skip on macOS 26 Intel (GH-153348) (#153453) gh-146531: Broaden `wm_iconbitmap` skip on macOS 26 Intel (GH-153348) (cherry picked from commit 6ba3ad55bd922f164acf8f20b884730b718ee433) Co-authored-by: Hugo van Kemenade <[email protected]> files: M Lib/test/test_tkinter/test_misc.py diff --git a/Lib/test/test_tkinter/test_misc.py b/Lib/test/test_tkinter/test_misc.py index fa15c9683043cd6..1452b598b6da82b 100644 --- a/Lib/test/test_tkinter/test_misc.py +++ b/Lib/test/test_tkinter/test_misc.py @@ -414,13 +414,10 @@ def test_wm_iconbitmap(self): and sys.platform == 'darwin' and platform.machine() == 'x86_64' and platform.mac_ver()[0].startswith('26.') - and ( - patchlevel[:3] <= (8, 6, 17) - or (9, 0) <= patchlevel[:3] <= (9, 0, 3) - ) ): # https://github.com/python/cpython/issues/146531 # Tk bug 4a2070f0d3a99aa412bc582d386d575ca2f37323 + # Not fixed as of Tk 8.6.18 and 9.0.4. self.skipTest('wm iconbitmap hangs on macOS 26 Intel') self.assertEqual(t.wm_iconbitmap(), '') _______________________________________________ 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]
