#1569291: speed up array.repeat() by making only O(log n) memcpy() calls; the code follows unicode_repeat.
diff --git a/Misc/NEWS b/Misc/NEWS
index 8463367..3d959c2 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -45,6 +45,8 @@
 Library
 -------
 
+- Issue #1569291: Speed up array.repeat().
+
 - Provide an interface to set the optimization level of compilation in
   py_compile, compileall and zipfile.PyZipFile.