bpo-28685: Optimize sorted() list.sort() with type-specialized comparisons (#582)
diff --git a/Misc/ACKS b/Misc/ACKS
index 20210e8..bfcdd33 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -554,6 +554,7 @@
Chris Gonnerman
Shelley Gooch
David Goodger
+Elliot Gorokhovsky
Hans de Graaff
Tim Graham
Kim Gräsman
diff --git a/Misc/NEWS.d/next/Core and Builtins/2018-01-28-15-09-33.bpo-28685.cHThLM.rst b/Misc/NEWS.d/next/Core and Builtins/2018-01-28-15-09-33.bpo-28685.cHThLM.rst
new file mode 100644
index 0000000..ccc3c08
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2018-01-28-15-09-33.bpo-28685.cHThLM.rst
@@ -0,0 +1,2 @@
+Optimize list.sort() and sorted() by using type specialized comparisons when
+possible.