summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2010-12-04 11:02:04 (GMT)
committerGeorg Brandl <georg@python.org>2010-12-04 11:02:04 (GMT)
commitc29cc6a8f27bcbe74772b691a352c8e299a6abfa (patch)
tree84da71c8ac60efa3d5a9391fcd73dafc27e1a5c5 /Misc
parent9d8711964f114b9f0f5ed8a9a1eccfba2a096030 (diff)
downloadcpython-c29cc6a8f27bcbe74772b691a352c8e299a6abfa.zip
cpython-c29cc6a8f27bcbe74772b691a352c8e299a6abfa.tar.gz
cpython-c29cc6a8f27bcbe74772b691a352c8e299a6abfa.tar.bz2
#1569291: speed up array.repeat() by making only O(log n) memcpy() calls; the code follows unicode_repeat.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 8463367..3d959c2 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -45,6 +45,8 @@ Core and Builtins
Library
-------
+- Issue #1569291: Speed up array.repeat().
+
- Provide an interface to set the optimization level of compilation in
py_compile, compileall and zipfile.PyZipFile.