diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2017-03-12 11:50:36 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-12 11:50:36 (GMT) |
commit | c2cf12857187aa147c268651f10acd6da2c9cb74 (patch) | |
tree | 19b0087a9bb6fb80ddfb4e82518b11e62e8083c0 /Misc | |
parent | 4dadcd4ed7824c7904add78577e6a05864cfe493 (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |