summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2016-08-14 01:33:33 (GMT)
committerBenjamin Peterson <benjamin@python.org>2016-08-14 01:33:33 (GMT)
commit4f976513efd8d411126e09d036842d0691c49c82 (patch)
tree99d85f9acb90e9f3cd36f735b41ed0e03a88eaa1 /Misc
parent6e01d90cc8bfac920bd4f7143b3968a8a21079d9 (diff)
downloadcpython-4f976513efd8d411126e09d036842d0691c49c82.zip
cpython-4f976513efd8d411126e09d036842d0691c49c82.tar.gz
cpython-4f976513efd8d411126e09d036842d0691c49c82.tar.bz2
fix possible integer overflow in binascii.b2a_qp (closes #27760)
Reported by Thomas E. Hybel
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index c3235de..b2f081c 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -29,6 +29,8 @@ Core and Builtins
Library
-------
+- Issue #27760: Fix possible integer overflow in binascii.b2a_qp.
+
- Issue #27758: Fix possible integer overflow in the _csv module for large record
lengths.