Skip to content

bpo-41300: IDLE - save files with non-ascii chars #21512

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jul 16, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions Lib/idlelib/NEWS.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
1 change: 1 addition & 0 deletions Lib/idlelib/iomenu.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import io
import os
import shlex
import sys
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Save files with non-ascii chars. Fix regression released in 3.9.0b4 and
3.8.4.