- Issue #3537: Fix an assertion failure when an empty but presized dict
  object was stored in the freelist.
diff --git a/Misc/NEWS b/Misc/NEWS
index a197efc..1c34654 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@
 Core and Builtins
 -----------------
 
+- Issue #3537: Fix an assertion failure when an empty but presized dict
+  object was stored in the freelist.
+
 - Issue #1481296: Make long(float('nan')) and int(float('nan')) raise
   ValueError consistently across platforms.