gh-113269: IDLE - Fix test_editor hang (macOS) (#113271)

Hangs on installed 3.13.0a2 on macOS Catalina.
Behavior on installed 3.12.1 and 3.11.7 is unknown.
This commit is contained in:
Terry Jan Reedy 2023-12-19 00:26:11 -05:00 committed by GitHub
parent c895403de0
commit fa9ba02353
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 1 deletions

View file

@ -4,6 +4,8 @@ Released on 2024-10-xx
=========================
gh-113269: Fix test_editor hang on macOS Catalina.
gh-112939: Fix processing unsaved files when quitting IDLE on macOS.
Patch by Ronald Oussoren and Christopher Chavez.

View file

@ -95,7 +95,7 @@ def test_tabwidth_8(self):
def insert(text, string):
text.delete('1.0', 'end')
text.insert('end', string)
text.update() # Force update for colorizer to finish.
text.update_idletasks() # Force update for colorizer to finish.
class IndentAndNewlineTest(unittest.TestCase):

View file

@ -0,0 +1 @@
Fix test_editor hang on macOS Catalina.