mirror of
https://github.com/python/cpython.git
synced 2026-03-06 13:00:50 +00:00
[3.12] gh-113269: IDLE - Fix test_editor hang (macOS) (GH-113271) (#113272)
gh-113269: IDLE - Fix test_editor hang (macOS) (GH-113271)
Hangs on installed 3.13.0a2 on macOS Catalina.
Behavior on installed 3.12.1 and 3.11.7 is unknown.
(cherry picked from commit fa9ba02353)
Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
This commit is contained in:
parent
816b635124
commit
1c2fcd8b99
3 changed files with 4 additions and 1 deletions
|
|
@ -4,6 +4,8 @@ Released after 2023-10-02
|
|||
=========================
|
||||
|
||||
|
||||
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.
|
||||
|
||||
|
|
|
|||
|
|
@ -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):
|
||||
|
|
|
|||
|
|
@ -0,0 +1 @@
|
|||
Fix test_editor hang on macOS Catalina.
|
||||
Loading…
Add table
Add a link
Reference in a new issue