summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2010-08-28 17:22:16 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2010-08-28 17:22:16 (GMT)
commit64a38c0eb5b7fd6e4ee5f3e912cff9eda8dd19af (patch)
tree457064e7557fbfd0538aba4e2a42d8acbd6f2328 /Misc
parenta62074883b7a32f83b13525b01efb619ae478cdf (diff)
downloadcpython-64a38c0eb5b7fd6e4ee5f3e912cff9eda8dd19af.zip
cpython-64a38c0eb5b7fd6e4ee5f3e912cff9eda8dd19af.tar.gz
cpython-64a38c0eb5b7fd6e4ee5f3e912cff9eda8dd19af.tar.bz2
Issue #1512791: In setframerate method of Wave_write, round non-integral
inputs to the nearest integer. Thanks Neil Tallim for the patch.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS3
2 files changed, 4 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index ef92941..0ab67dd 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -792,6 +792,7 @@ Paul Swartz
Thenault Sylvain
Péter Szabó
Arfrever Frehtes Taifersar Arahesis
+Neil Tallim
Geoff Talvola
Musashi Tamura
William Tanksley
diff --git a/Misc/NEWS b/Misc/NEWS
index 7ef147d..1179c9f 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -132,6 +132,9 @@ Extensions
Library
-------
+- Issue #1512791: In setframerate() in the wave module, non-integral
+ frame rates are rounded to the nearest integer.
+
- Issue #8797: urllib2 does a retry for Basic Authentication failure instead of
falling into recursion.