diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2020-07-16 22:24:49 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-16 22:24:49 (GMT) |
commit | 38d3864efe914fda64553e2ec75c9ec15574483f (patch) | |
tree | 294ef0cbc206cf70c3b9fe5e60b6f18ad77a4ba1 /Lib | |
parent | 0275e0452a773976827c2b9bd1e598ee08e2d7f5 (diff) | |
download | cpython-38d3864efe914fda64553e2ec75c9ec15574483f.zip cpython-38d3864efe914fda64553e2ec75c9ec15574483f.tar.gz cpython-38d3864efe914fda64553e2ec75c9ec15574483f.tar.bz2 |
bpo-41300: IDLE - save files with non-ascii chars (GH-21512)
Fix regression released in 3.9.0b4 and 3.8.4.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/idlelib/NEWS.txt | 3 | ||||
-rw-r--r-- | Lib/idlelib/iomenu.py | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/Lib/idlelib/NEWS.txt b/Lib/idlelib/NEWS.txt index 1c5c03d..60f46f6 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 7641d86..74ebefd 100644 --- a/Lib/idlelib/iomenu.py +++ b/Lib/idlelib/iomenu.py @@ -1,3 +1,4 @@ +import io import os import shlex import sys |