Have pprint() respect the order in an OrderedDict.
diff --git a/Misc/NEWS b/Misc/NEWS
index 148ee79..0849bd9 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -16,6 +16,9 @@
 Library
 -------
 
+- The pprint module now supports printing OrderedDicts in their given
+  order (formerly, it would sort the keys).
+
 - Logging: Added QueueHandler class to facilitate logging usage with
   multiprocessing.