summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2019-10-27 02:19:57 (GMT)
committerGitHub <noreply@github.com>2019-10-27 02:19:57 (GMT)
commite31a79a5b44357b409d71949dc5308889970f9ab (patch)
tree5d3c9c405e03d479d7a23ad5ea8c7bf920f06b55 /Lib/idlelib
parente3f90b217a5152275b180b466bd503658a734462 (diff)
downloadcpython-e31a79a5b44357b409d71949dc5308889970f9ab.zip
cpython-e31a79a5b44357b409d71949dc5308889970f9ab.tar.gz
cpython-e31a79a5b44357b409d71949dc5308889970f9ab.tar.bz2
bpo-34162: Last idlelib/NEWS.txt items for 3.8.0. (GH-16943)
Diffstat (limited to 'Lib/idlelib')
-rw-r--r--Lib/idlelib/NEWS.txt9
1 files changed, 9 insertions, 0 deletions
diff --git a/Lib/idlelib/NEWS.txt b/Lib/idlelib/NEWS.txt
index 9d26bda..1597eb9 100644
--- a/Lib/idlelib/NEWS.txt
+++ b/Lib/idlelib/NEWS.txt
@@ -2,6 +2,15 @@ What's New in IDLE 3.8.0 (since 3.7.0)
Released on 2019-10-20?
======================================
+bpo-36698: IDLE no longer fails when writing non-encodable characters
+to stderr. It now escapes them with a backslash, like the regular
+Python interpreter. Add an errors field to the standard streams.
+
+bpo-13153: Improve tkinter's handing of non-BMP (astral) unicode
+characters, such as 'rocket \U0001f680'. Whether a proper glyph or
+replacement char is displayed depends on the OS and font. For IDLE,
+astral chars in code interfere with editing.
+
bpo-35379: When exiting IDLE, catch any AttributeError. One happens
when EditorWindow.close is called twice. Printing a traceback, when
IDLE is run from a terminal, is useless and annoying.