summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2017-03-12 19:52:57 (GMT)
committerGitHub <noreply@github.com>2017-03-12 19:52:57 (GMT)
commita16894ebf8823f0e09036aacde9288c00e8d9058 (patch)
tree355d23e7ff0919193c125c416cc777bf074c0c24 /Misc/NEWS
parenta6aac8c87036c3180916b893d66b1e257b5e2ec2 (diff)
downloadcpython-a16894ebf8823f0e09036aacde9288c00e8d9058.zip
cpython-a16894ebf8823f0e09036aacde9288c00e8d9058.tar.gz
cpython-a16894ebf8823f0e09036aacde9288c00e8d9058.tar.bz2
[3.5] bpo-8256: Fixed possible failing or crashing input() (#642)
if attributes "encoding" or "errors" of sys.stdin or sys.stdout are not set or are not strings. (cherry picked from commit c2cf12857187aa147c268651f10acd6da2c9cb74)
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index df0975a..98b47bd 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -41,6 +41,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-28298: Fix a bug that prevented array 'Q', 'L' and 'I' from accepting big
intables (objects that have __int__) as elements. Patch by Oren Milman.