_PyWeakref_GetWeakrefCount() now returns a Py_ssize_t instead of long.
diff --git a/Misc/NEWS b/Misc/NEWS
index f2a318e..81f7ca4 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@
 Core and builtins
 -----------------
 
+- _PyWeakref_GetWeakrefCount() now returns a Py_ssize_t, it previously
+  returned a long (see PEP 353).
+
 - Bug #1515471: string.replace() accepts character buffers again.
 
 - Add PyErr_WarnEx() so C code can pass the stacklevel to warnings.warn().