summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-06-28 14:52:09 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-06-28 14:52:09 (GMT)
commit449e2be12b654a9b892648ff5496c6d7dfbb85f9 (patch)
tree966f4a742492ccf2af0aa194137a3621a0bac237 /Misc
parent101ff3541cbe5bd9549722dc53c28d6c21b9389c (diff)
downloadcpython-449e2be12b654a9b892648ff5496c6d7dfbb85f9.zip
cpython-449e2be12b654a9b892648ff5496c6d7dfbb85f9.tar.gz
cpython-449e2be12b654a9b892648ff5496c6d7dfbb85f9.tar.bz2
Issue #24456: Fixed possible buffer over-read in adpcm2lin() and lin2adpcm()
functions of the audioop module.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 02b129a..d1f6242 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -60,6 +60,9 @@ Core and Builtins
Library
-------
+- Issue #24456: Fixed possible buffer over-read in adpcm2lin() and lin2adpcm()
+ functions of the audioop module.
+
- Issue #24336: The contextmanager decorator now works with functions with
keyword arguments called "func" and "self". Patch by Martin Panter.