summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2010-09-09 12:31:00 (GMT)
committerRaymond Hettinger <python@rcn.com>2010-09-09 12:31:00 (GMT)
commitbad3c88094f43f3bc7dcce22f47b8c2a8dddabcf (patch)
treee315bcea2939b788711b87a7a9595cddfa7f0281 /Misc
parenta0e79408bcf14015995fb4f1f1c3ad88df017496 (diff)
downloadcpython-bad3c88094f43f3bc7dcce22f47b8c2a8dddabcf.zip
cpython-bad3c88094f43f3bc7dcce22f47b8c2a8dddabcf.tar.gz
cpython-bad3c88094f43f3bc7dcce22f47b8c2a8dddabcf.tar.bz2
Have pprint() respect the order in an OrderedDict.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 148ee79..0849bd9 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -16,6 +16,9 @@ Core and Builtins
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.