diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2020-07-16 18:24:49 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-16 18:24:49 -0400 |
commit | 38d3864efe914fda64553e2ec75c9ec15574483f (patch) | |
tree | 294ef0cbc206cf70c3b9fe5e60b6f18ad77a4ba1 /Lib/idlelib/iomenu.py | |
parent | 0275e0452a773976827c2b9bd1e598ee08e2d7f5 (diff) | |
download | cpython-git-38d3864efe914fda64553e2ec75c9ec15574483f.tar.gz |
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/idlelib/iomenu.py')
-rw-r--r-- | Lib/idlelib/iomenu.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/idlelib/iomenu.py b/Lib/idlelib/iomenu.py index 7641d86685..74ebefd420 100644 --- a/Lib/idlelib/iomenu.py +++ b/Lib/idlelib/iomenu.py @@ -1,3 +1,4 @@ +import io import os import shlex import sys |