Skip to content

Commit 0891295

Browse files
[3.15] gh-146531: Broaden wm_iconbitmap skip on macOS 26 Intel (GH-153348) (#153450)
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 1604c80 commit 0891295

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
@@ -984,13 +984,10 @@ def test_wm_iconbitmap(self):
984984
and sys.platform == 'darwin'
985985
and platform.machine() == 'x86_64'
986986
and platform.mac_ver()[0].startswith('26.')
987-
and (
988-
patchlevel[:3] <= (8, 6, 17)
989-
or (9, 0) <= patchlevel[:3] <= (9, 0, 3)
990-
)
991987
):
992988
# https://github.com/python/cpython/issues/146531
993989
# Tk bug 4a2070f0d3a99aa412bc582d386d575ca2f37323
990+
# Not fixed as of Tk 8.6.18 and 9.0.4.
994991
self.skipTest('wm iconbitmap hangs on macOS 26 Intel')
995992

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

0 commit comments

Comments
 (0)