diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2013-10-05 19:12:18 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2013-10-05 19:12:18 (GMT) |
commit | 5df8a8a1fd6cc6f4469dc7d3994d06e2aea24c52 (patch) | |
tree | 3e56cec37fe9182adb7ae56eacdc68149dfb1981 /Misc/NEWS | |
parent | dcd01b49329d5596c3ad3254ae9eeabd15f100d2 (diff) | |
download | cpython-5df8a8a1fd6cc6f4469dc7d3994d06e2aea24c52.zip cpython-5df8a8a1fd6cc6f4469dc7d3994d06e2aea24c52.tar.gz cpython-5df8a8a1fd6cc6f4469dc7d3994d06e2aea24c52.tar.bz2 |
Issue #19087: Improve bytearray allocation in order to allow cheap popping of data at the front (slice deletion).
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -10,6 +10,9 @@ Projected release date: 2013-10-20 Core and Builtins ----------------- +- Issue #19087: Improve bytearray allocation in order to allow cheap popping + of data at the front (slice deletion). + - Issue #19014: memoryview.cast() is now allowed on zero-length views. - Issue #18690: memoryview is now automatically registered with |