summaryrefslogtreecommitdiff
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2019-10-08 14:32:25 +0300
committerGitHub <noreply@github.com>2019-10-08 14:32:25 +0300
commitb690a2759e62d9ee0b6ea1b20e8f7e4b2cdbf8bb (patch)
treeef8fa0a711cb3780ac5bb33147bea57378322c62 /Misc/NEWS.d
parentd05b000c6bcd39dba4f4b2656e45954802649562 (diff)
downloadcpython-git-b690a2759e62d9ee0b6ea1b20e8f7e4b2cdbf8bb.tar.gz
bpo-36698: IDLE no longer fails when write non-encodable characters to stderr. (GH-16583)
It now escapes them with a backslash, as the regular Python interpreter. Added the "errors" field to the standard streams.
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r--Misc/NEWS.d/next/IDLE/2019-10-04-18-03-09.bpo-36698.BKcmom.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/IDLE/2019-10-04-18-03-09.bpo-36698.BKcmom.rst b/Misc/NEWS.d/next/IDLE/2019-10-04-18-03-09.bpo-36698.BKcmom.rst
new file mode 100644
index 0000000000..5aaa3c9264
--- /dev/null
+++ b/Misc/NEWS.d/next/IDLE/2019-10-04-18-03-09.bpo-36698.BKcmom.rst
@@ -0,0 +1,3 @@
+IDLE no longer fails when write non-encodable characters to stderr. It now
+escapes them with a backslash, as the regular Python interpreter. Added the
+``errors`` field to the standard streams.