Add functools.CmpToKey()
diff --git a/Misc/NEWS b/Misc/NEWS
index af1dd20..0f1f225 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -57,6 +57,12 @@
- collections.Counter() now supports a subtract() method.
+- the functools module now has a total_ordering() class decorator
+ to simplify the specifying rich comparisons.
+
+- The functools module also adds CmpToKey() as a tool to transition
+ old-style comparison functions to new-style key-functions.
+
- Issue #8294: The Fraction constructor now accepts Decimal and float
instances directly.