Skip to content

Commit 53c3f36

Browse files
hugovkmiss-islington
authored andcommitted
gh-146531: Broaden wm_iconbitmap skip on macOS 26 Intel (GH-153348)
(cherry picked from commit 6ba3ad5) Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com>
1 parent be914bb commit 53c3f36

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

Lib/test/test_tkinter/test_misc.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -414,13 +414,10 @@ def test_wm_iconbitmap(self):
414414
and sys.platform == 'darwin'
415415
and platform.machine() == 'x86_64'
416416
and platform.mac_ver()[0].startswith('26.')
417-
and (
418-
patchlevel[:3] <= (8, 6, 17)
419-
or (9, 0) <= patchlevel[:3] <= (9, 0, 3)
420-
)
421417
):
422418
# https://github.com/python/cpython/issues/146531
423419
# Tk bug 4a2070f0d3a99aa412bc582d386d575ca2f37323
420+
# Not fixed as of Tk 8.6.18 and 9.0.4.
424421
self.skipTest('wm iconbitmap hangs on macOS 26 Intel')
425422

426423
self.assertEqual(t.wm_iconbitmap(), '')

0 commit comments

Comments
 (0)