diff options
author | Raymond Hettinger <python@rcn.com> | 2010-09-09 12:31:00 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2010-09-09 12:31:00 (GMT) |
commit | bad3c88094f43f3bc7dcce22f47b8c2a8dddabcf (patch) | |
tree | e315bcea2939b788711b87a7a9595cddfa7f0281 /Misc | |
parent | a0e79408bcf14015995fb4f1f1c3ad88df017496 (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |