fix output from RawConfigParser.write and ConfigParser.write for None
values (http://bugs.python.org/issue7005)
diff --git a/Misc/NEWS b/Misc/NEWS
index e1ff17a..3172e49 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -36,6 +36,9 @@
 Library
 -------
 
+- Issue #7005: Fixed output of None values for RawConfigParser.write and
+  ConfigParser.write.
+
 - Issue #808164: Fixed socket.close to avoid references to globals, to
   avoid issues when socket.close is called from a __del__ method.