Hangs on installed 3.13.0a2 on macOS Catalina.
Behavior on installed 3.12.1 and 3.11.7 is unknown.
=========================
+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.
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):
--- /dev/null
+Fix test_editor hang on macOS Catalina.