bpo-41300: IDLE - save files with non-ascii chars (GH-21512)
Fix regression released in 3.9.0b4 and 3.8.4.
This commit is contained in:
parent
0275e0452a
commit
38d3864efe
|
@ -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.
|
||||
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
import io
|
||||
import os
|
||||
import shlex
|
||||
import sys
|
||||
|
|
|
@ -0,0 +1,2 @@
|
|||
Save files with non-ascii chars. Fix regression released in 3.9.0b4 and
|
||||
3.8.4.
|
Loading…
Reference in New Issue