- Fix Issue #1703448: A joined thread could show up in the
  threading.enumerate() list after the join() for a brief period until
  it actually exited.
diff --git a/Misc/NEWS b/Misc/NEWS
index 2aabfbc..3b55d74 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -371,6 +371,10 @@
 - Issue #1537: Changed GeneratorExit's base class from Exception to
   BaseException.
 
+- Fix Issue #1703448: A joined thread could show up in the
+  threading.enumerate() list after the join() for a brief period until
+  it actually exited.
+
 Library
 -------