[Python-checkins] [3.8] bpo-41300: IDLE - save files with non-ascii chars (GH-21512)

Miss Islington (bot) webhook-mailer at python.org
Thu Jul 16 18:47:57 EDT 2020


https://github.com/python/cpython/commit/ffeb9202540c07d384f82ff3ab86c37c1433283a
commit: ffeb9202540c07d384f82ff3ab86c37c1433283a
branch: 3.8
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2020-07-16T18:47:52-04:00
summary:

[3.8] bpo-41300: IDLE - save files with non-ascii chars  (GH-21512)

Fix regression released in 3.9.0b4 and 3.8.4.
(cherry picked from commit 38d3864efe914fda64553e2ec75c9ec15574483f)

Co-authored-by: Terry Jan Reedy <tjreedy at udel.edu>

files:
A Misc/NEWS.d/next/IDLE/2020-07-16-17-39-06.bpo-41300.wRixNb.rst
M Lib/idlelib/NEWS.txt
M Lib/idlelib/iomenu.py

diff --git a/Lib/idlelib/NEWS.txt b/Lib/idlelib/NEWS.txt
index b43c6d3a64cfd..ddc1e22e23ed4 100644
--- a/Lib/idlelib/NEWS.txt
+++ b/Lib/idlelib/NEWS.txt
@@ -1,8 +1,15 @@
-What's New in IDLE 3.8.4
-Released on 2020-07-03?
+What's New in IDLE 3.8.5
+Released on 2020-07-20
 ======================================
 
 
+bpo-41300: Save files with non-ascii chars.  Fix regression in
+3.9.0b4 and 3.8.4.
+
+What's New in IDLE 3.8.4
+Released on 2020-06-30
+======================================
+
 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 7641d866858a1..74ebefd4208f7 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 0000000000000..080775f7d7ab4
--- /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.



More information about the Python-checkins mailing list