From 2a1b45153b50915c04e8601203c3a5831783f5b4 Mon Sep 17 00:00:00 2001 From: Terry Jan Reedy Date: Thu, 16 Jul 2020 17:33:35 -0400 Subject: [PATCH 1/3] bpo-41300: IDLE - save files with non-ascii chars Fix regression released in 3.9.0b4 and 3.8.4. --- Lib/idlelib/iomenu.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Lib/idlelib/iomenu.py b/Lib/idlelib/iomenu.py index 7641d866858a1db..74ebefd4208f78f 100644 --- a/Lib/idlelib/iomenu.py +++ b/Lib/idlelib/iomenu.py @@ -1,3 +1,4 @@ +import io import os import shlex import sys From e00829ca3aa17b9612fe24ba7d4902043ac0f68e Mon Sep 17 00:00:00 2001 From: Terry Jan Reedy Date: Thu, 16 Jul 2020 17:39:43 -0400 Subject: [PATCH 2/3] blurb --- Misc/NEWS.d/next/IDLE/2020-07-16-17-39-06.bpo-41300.wRixNb.rst | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 Misc/NEWS.d/next/IDLE/2020-07-16-17-39-06.bpo-41300.wRixNb.rst diff --git a/Misc/NEWS.d/next/IDLE/2020-07-16-17-39-06.bpo-41300.wRixNb.rst b/Misc/NEWS.d/next/IDLE/2020-07-16-17-39-06.bpo-41300.wRixNb.rst new file mode 100644 index 000000000000000..080775f7d7ab44c --- /dev/null +++ b/Misc/NEWS.d/next/IDLE/2020-07-16-17-39-06.bpo-41300.wRixNb.rst @@ -0,0 +1,2 @@ +Save files with non-ascii chars. Fix regression released in 3.9.0b4 and +3.8.4. From f1967ca6c53a2390d121a97719596edaf5adeed2 Mon Sep 17 00:00:00 2001 From: Terry Jan Reedy Date: Thu, 16 Jul 2020 17:48:46 -0400 Subject: [PATCH 3/3] idle NEWS. --- Lib/idlelib/NEWS.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Lib/idlelib/NEWS.txt b/Lib/idlelib/NEWS.txt index 1c5c03da86efc57..60f46f66603246a 100644 --- a/Lib/idlelib/NEWS.txt +++ b/Lib/idlelib/NEWS.txt @@ -3,6 +3,9 @@ Released on 2020-10-05? ====================================== +bpo-41300: Save files with non-ascii chars. Fix regression in +3.9.0b4 and 3.8.4. + bpo-37765: Add keywords to module name completion list. Rewrite Completions section of IDLE doc.