diff options
author | Georg Brandl <georg@python.org> | 2010-12-04 11:02:04 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-12-04 11:02:04 (GMT) |
commit | c29cc6a8f27bcbe74772b691a352c8e299a6abfa (patch) | |
tree | 84da71c8ac60efa3d5a9391fcd73dafc27e1a5c5 /Misc | |
parent | 9d8711964f114b9f0f5ed8a9a1eccfba2a096030 (diff) | |
download | cpython-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/NEWS | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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. |