Bug #1545497: when given an explicit base, int() did ignore NULs
embedded in the string to convert.
diff --git a/Misc/NEWS b/Misc/NEWS
index 605b1d8..cd21eea 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@
 Core and builtins
 -----------------
 
+- Bug #1545497: when given an explicit base, int() did ignore NULs
+  embedded in the string to convert.
+
 - Bug #1569998: break inside a try statement (outside a loop) is now
   recognized and rejected.