summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2017-03-12 11:50:36 (GMT)
committerGitHub <noreply@github.com>2017-03-12 11:50:36 (GMT)
commitc2cf12857187aa147c268651f10acd6da2c9cb74 (patch)
tree19b0087a9bb6fb80ddfb4e82518b11e62e8083c0 /Misc
parent4dadcd4ed7824c7904add78577e6a05864cfe493 (diff)
downloadcpython-c2cf12857187aa147c268651f10acd6da2c9cb74.zip
cpython-c2cf12857187aa147c268651f10acd6da2c9cb74.tar.gz
cpython-c2cf12857187aa147c268651f10acd6da2c9cb74.tar.bz2
bpo-8256: Fixed possible failing or crashing input() (#517)
if attributes "encoding" or "errors" of sys.stdin or sys.stdout are not set or are not strings.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index d80674c..2872aa1 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -278,6 +278,9 @@ Extension Modules
Library
-------
+- bpo-8256: Fixed possible failing or crashing input() if attributes "encoding"
+ or "errors" of sys.stdin or sys.stdout are not set or are not strings.
+
- bpo-28692: Using non-integer value for selecting a plural form in gettext is
now deprecated.