Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions Lib/test/test_tkinter/test_misc.py
Original file line number Diff line number Diff line change
Expand Up @@ -1044,13 +1044,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(), '')
Expand Down
Loading