summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-09-14 13:34:37 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2016-09-14 13:34:37 (GMT)
commite6265e92bfbc3cda50cc71f049552217db65bf94 (patch)
tree05fde6152f1504f0b0dce23a0171f6ed8e309583 /Misc
parent7ce201322edf76ad75038ad84229a070bec34be2 (diff)
downloadcpython-e6265e92bfbc3cda50cc71f049552217db65bf94.zip
cpython-e6265e92bfbc3cda50cc71f049552217db65bf94.tar.gz
cpython-e6265e92bfbc3cda50cc71f049552217db65bf94.tar.bz2
Issue #27599: Fixed buffer overrun in binascii.b2a_qp() and binascii.a2b_qp().
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index e61e98b..4bd55c3 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -71,6 +71,7 @@ Core and Builtins
Library
-------
+- Issue #27599: Fixed buffer overrun in binascii.b2a_qp() and binascii.a2b_qp().
- Issue #19003:m email.generator now replaces only \r and/or \n line
endings, per the RFC, instead of all unicode line endings.