]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.8] bpo-41300: IDLE - save files with non-ascii chars (GH-21512)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Thu, 16 Jul 2020 22:47:52 +0000 (15:47 -0700)
committerGitHub <noreply@github.com>
Thu, 16 Jul 2020 22:47:52 +0000 (18:47 -0400)
Fix regression released in 3.9.0b4 and 3.8.4.
(cherry picked from commit 38d3864efe914fda64553e2ec75c9ec15574483f)

Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
Lib/idlelib/NEWS.txt
Lib/idlelib/iomenu.py
Misc/NEWS.d/next/IDLE/2020-07-16-17-39-06.bpo-41300.wRixNb.rst [new file with mode: 0644]

index b43c6d3a64cfd689d25cb6b5de85090a41076301..ddc1e22e23ed4865125cae00f13c5ad13a938e78 100644 (file)
@@ -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.
 
index 7641d866858a1db2229e05951791b0cf494425b8..74ebefd4208f78fac6eede4f1aa25159566a1ef1 100644 (file)
@@ -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 (file)
index 0000000..080775f
--- /dev/null
@@ -0,0 +1,2 @@
+Save files with non-ascii chars. Fix regression released in 3.9.0b4 and
+3.8.4.