Close #10042: functools.total_ordering now handles NotImplemented

(Patch by Katie Miller)
diff --git a/Misc/ACKS b/Misc/ACKS
index a5d577d..bad2c51 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -862,6 +862,7 @@
 Damien Miller
 Jason V. Miller
 Jay T. Miller
+Katie Miller
 Roman Milner
 Julien Miotte
 Andrii V. Mishkovskyi
diff --git a/Misc/NEWS b/Misc/NEWS
index 444a042..b2030a8 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -13,6 +13,10 @@
 Library
 -------
 
+- Issue #10042: functools.total_ordering now correctly handles
+  NotImplemented being returned by the underlying comparison function (Patch
+  by Katie Miller)
+
 - Issue #19092: contextlib.ExitStack now correctly reraises exceptions
   from the __exit__ callbacks of inner context managers (Patch by Hrvoje
   Nikšić)