diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2010-05-10 16:27:45 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2010-05-10 16:27:45 (GMT) |
commit | 85eacea31e508666db1ce29827308e98fba1bc21 (patch) | |
tree | bd128e4a558014fdfc247752ac465fcc07869222 /Misc | |
parent | 8fc1178cf81e155f1e50151b5820c24e23d43e37 (diff) | |
download | cpython-85eacea31e508666db1ce29827308e98fba1bc21.zip cpython-85eacea31e508666db1ce29827308e98fba1bc21.tar.gz cpython-85eacea31e508666db1ce29827308e98fba1bc21.tar.bz2 |
Merged revisions 81045 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r81045 | mark.dickinson | 2010-05-10 17:07:42 +0100 (Mon, 10 May 2010) | 3 lines
Issue #8674: Fix incorrect and UB-inducing overflow checks in audioop
module. Thanks Tomas Hoger for the patch.
........
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/ACKS | 1 | ||||
-rw-r--r-- | Misc/NEWS | 3 |
2 files changed, 4 insertions, 0 deletions
@@ -340,6 +340,7 @@ Joerg-Cyril Hoehle Gregor Hoffleit Chris Hoffman Albert Hofkamp +Tomas Hoger Jonathan Hogg Gerrit Holl Shane Holloway @@ -1114,6 +1114,9 @@ Library Extension Modules ----------------- +- Issue #8674: Fixed a number of incorrect or undefined-behaviour-inducing + overflow checks in the audioop module. + - Issue #8644: The accuracy of td.total_seconds() has been improved (by calculating with integer arithmetic instead of float arithmetic internally): the result is now always correctly rounded, and is equivalent to td / |