]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-146531: Broaden `wm_iconbitmap` skip on macOS 26 Intel (#153348)
authorHugo van Kemenade <1324225+hugovk@users.noreply.github.com>
Thu, 9 Jul 2026 18:23:31 +0000 (21:23 +0300)
committerGitHub <noreply@github.com>
Thu, 9 Jul 2026 18:23:31 +0000 (21:23 +0300)
Lib/test/test_tkinter/test_misc.py

index 5a25d3689df89ce01f4820a04a5c5676c91874c7..0ebaac22a2971dd855ec7bddeb7fcfe38fe997e6 100644 (file)
@@ -1057,13 +1057,10 @@ class WmTest(AbstractTkTest, unittest.TestCase):
             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(), '')