Fix #1530559, struct.pack raises TypeError where it used to convert.
Passing float arguments to struct.pack when integers are expected
now triggers a DeprecationWarning.
diff --git a/Misc/NEWS b/Misc/NEWS
index 9373be2..d3a9442 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -40,6 +40,10 @@
Extension Modules
-----------------
+- Bug #1530559, struct.pack raises TypeError where it used to convert.
+ Passing float arguments to struct.pack when integers are expected
+ now triggers a DeprecationWarning.
+
Tests
-----