Closes issue 14971.
unittest test discovery no longer gets confused when a function
has a different __name__ than its name in the TestCase class dictionary.
diff --git a/Misc/NEWS b/Misc/NEWS
index 53be4c1..3956628 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -32,6 +32,9 @@
Library
-------
+- Issue #14971: unittest test discovery no longer gets confused when a function
+ has a different __name__ than its name in the TestCase class dictionary.
+
- Issue #18672: Fixed format specifiers for Py_ssize_t in debugging output in
the _sre moduel.