Merged revisions 78384 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r78384 | dirkjan.ochtman | 2010-02-23 16:09:52 -0500 (Tue, 23 Feb 2010) | 4 lines

  Fix #1537721: add writeheader() method to csv.DictWriter.

  Reviewed by skip.montanaro and thomas.wouters.
........
diff --git a/Misc/NEWS b/Misc/NEWS
index 6abe1e2..666139f 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -254,6 +254,8 @@
 Library
 -------
 
+- Issue #1537721: Add a writeheader() method to csv.DictWriter.
+
 - Issue #7959: ctypes callback functions are now registered correctly
   with the cylce garbage collector.