summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2010-09-06 21:26:09 (GMT)
committerRaymond Hettinger <python@rcn.com>2010-09-06 21:26:09 (GMT)
commitf45abc97bfad3bc9737a8a8d95c1f4a60cd6f478 (patch)
tree7b24d9113c1d79480cde1daae9ed58199bc0e007 /Misc/NEWS
parent7b2a7710ef17e38e021f6f045b8cd7ad0e96d5e1 (diff)
downloadcpython-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/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index d2d35d0..262983b 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.