From: Terry Jan Reedy Date: Thu, 16 Jul 2020 22:24:49 +0000 (-0400) Subject: bpo-41300: IDLE - save files with non-ascii chars (GH-21512) X-Git-Tag: v3.10.0a1~382 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=38d3864efe914fda64553e2ec75c9ec15574483f;p=thirdparty%2FPython%2Fcpython.git bpo-41300: IDLE - save files with non-ascii chars (GH-21512) Fix regression released in 3.9.0b4 and 3.8.4. --- diff --git a/Lib/idlelib/NEWS.txt b/Lib/idlelib/NEWS.txt index 1c5c03da86ef..60f46f666032 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. diff --git a/Lib/idlelib/iomenu.py b/Lib/idlelib/iomenu.py index 7641d866858a..74ebefd4208f 100644 --- a/Lib/idlelib/iomenu.py +++ b/Lib/idlelib/iomenu.py @@ -1,3 +1,4 @@ +import io import os import shlex import sys 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 000000000000..080775f7d7ab --- /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.