diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2010-07-03 13:44:22 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2010-07-03 13:44:22 (GMT) |
commit | bc5c54bca24fdb1fcf7fa055831ec997a65f3ce8 (patch) | |
tree | ad2419a15c9ba28327b90c3d6f06b12dbb6a3314 /Misc | |
parent | 4833e5b874d2aad0a19c1c682095733c05adc940 (diff) | |
download | cpython-bc5c54bca24fdb1fcf7fa055831ec997a65f3ce8.zip cpython-bc5c54bca24fdb1fcf7fa055831ec997a65f3ce8.tar.gz cpython-bc5c54bca24fdb1fcf7fa055831ec997a65f3ce8.tar.bz2 |
Merged revisions 82492 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r82492 | victor.stinner | 2010-07-03 15:36:19 +0200 (sam., 03 juil. 2010) | 3 lines
Issue #7673: Fix security vulnerability (CVE-2010-2089) in the audioop module,
ensure that the input string length is a multiple of the frame size
........
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -468,13 +468,16 @@ C-API Library ------- +- Issue #7673: Fix security vulnerability (CVE-2010-2089) in the audioop + module, ensure that the input string length is a multiple of the frame size + - Issue #6507: Accept source strings in dis.dis(). Original patch by Daniel Urban. - Issue #7829: Clearly document that the dis module is exposing an implementation detail that is not stable between Python VMs or releases. -- Issue #6589: cleanup asyncore.socket_map in case smtpd.SMTPServer constructor +- Issue #6589: cleanup asyncore.socket_map in case smtpd.SMTPServer constructor raises an exception. - Issue #9110: Addition of ContextDecorator to contextlib, for creating APIs |