Add news about Fred's change to Py_InitModule4().
diff --git a/Misc/NEWS b/Misc/NEWS
index 0a97187..3e9e1aa 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -482,6 +482,10 @@
 
 C API
 
+- The Py_InitModule*() functions now accept NULL for the 'methods'
+  argument.  Modules without global functions are becoming more common
+  now that factories can be types rather than functions.
+
 - New C API PyUnicode_FromOrdinal() which exposes unichr() at C
   level.