Issue #1512791: In setframerate method of Wave_write, round non-integral
inputs to the nearest integer. Thanks Neil Tallim for the patch.
diff --git a/Misc/ACKS b/Misc/ACKS
index ef92941..0ab67dd 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -792,6 +792,7 @@
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 @@
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.