diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2017-03-12 19:52:57 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-12 19:52:57 (GMT) |
commit | a16894ebf8823f0e09036aacde9288c00e8d9058 (patch) | |
tree | 355d23e7ff0919193c125c416cc777bf074c0c24 /Misc/NEWS | |
parent | a6aac8c87036c3180916b893d66b1e257b5e2ec2 (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |