summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-06-28 14:55:33 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-06-28 14:55:33 (GMT)
commitb9b9e7b46a880e7a628a698fd47173b7f7d68870 (patch)
tree8c1e19dde122daecdf8f4e1ca64bedbfc9ba0093 /Misc
parenteab770404437bd49ebf897b681221784b0035795 (diff)
parent449e2be12b654a9b892648ff5496c6d7dfbb85f9 (diff)
downloadcpython-b9b9e7b46a880e7a628a698fd47173b7f7d68870.zip
cpython-b9b9e7b46a880e7a628a698fd47173b7f7d68870.tar.gz
cpython-b9b9e7b46a880e7a628a698fd47173b7f7d68870.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 3ecc73d..9df9a62 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -25,6 +25,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.