diff options
author | Raymond Hettinger <python@rcn.com> | 2010-09-06 21:26:09 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2010-09-06 21:26:09 (GMT) |
commit | f45abc97bfad3bc9737a8a8d95c1f4a60cd6f478 (patch) | |
tree | 7b24d9113c1d79480cde1daae9ed58199bc0e007 /Misc/NEWS | |
parent | 7b2a7710ef17e38e021f6f045b8cd7ad0e96d5e1 (diff) | |
download | cpython-f45abc97bfad3bc9737a8a8d95c1f4a60cd6f478.zip cpython-f45abc97bfad3bc9737a8a8d95c1f4a60cd6f478.tar.gz cpython-f45abc97bfad3bc9737a8a8d95c1f4a60cd6f478.tar.bz2 |
Add method to OrderedDict for repositioning keys to the ends.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -13,6 +13,9 @@ Core and Builtins Library ------- +- collections.OrderedDict now supports a new method for repositioning + keys to either end. + - Issue #9754: Similarly to assertRaises and assertRaisesRegexp, unittest test cases now also have assertWarns and assertWarnsRegexp methods to check that a given warning type was triggered by the code under test. |