also make NotImplementedType callable
diff --git a/Misc/NEWS b/Misc/NEWS
index d0f203a..cdbb09b 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,8 +10,8 @@
 Core and Builtins
 -----------------
 
-- Make type(None) and type(Ellipsis) callable. They return the respective
-  singleton instances.
+- Make type(None), type(Ellipsis), and type(NotImplemented) callable. They
+  return the respective singleton instances.
 
 - Forbid summing bytes in sum().