Skip to content

Commit 6ba3ad5

Browse files
authored
gh-146531: Broaden wm_iconbitmap skip on macOS 26 Intel (#153348)
1 parent 39a817e commit 6ba3ad5

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
@@ -1057,13 +1057,10 @@ def test_wm_iconbitmap(self):
10571057
and sys.platform == 'darwin'
10581058
and platform.machine() == 'x86_64'
10591059
and platform.mac_ver()[0].startswith('26.')
1060-
and (
1061-
patchlevel[:3] <= (8, 6, 17)
1062-
or (9, 0) <= patchlevel[:3] <= (9, 0, 3)
1063-
)
10641060
):
10651061
# https://github.com/python/cpython/issues/146531
10661062
# Tk bug 4a2070f0d3a99aa412bc582d386d575ca2f37323
1063+
# Not fixed as of Tk 8.6.18 and 9.0.4.
10671064
self.skipTest('wm iconbitmap hangs on macOS 26 Intel')
10681065

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

0 commit comments

Comments
 (0)