summaryrefslogtreecommitdiff
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-08-15 09:46:07 +0300
committerSerhiy Storchaka <storchaka@gmail.com>2016-08-15 09:46:07 +0300
commiteb24988962728b3edbd346ced938c4120e7e2eed (patch)
tree3ad9b38b964477f98327ffed1c338b49b1533757 /Misc
parentd00342347e467981b52368235b99a22dc264dab1 (diff)
downloadcpython-git-eb24988962728b3edbd346ced938c4120e7e2eed.tar.gz
Issue #27704: Optimized creating bytes and bytearray from byte-like objects
and iterables. Speed up to 3 times for short objects. Original patch by Naoki Inada.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 9e4b2d01db..a34289bebb 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,10 @@ What's New in Python 3.6.0 alpha 4
Core and Builtins
-----------------
+- Issue #27704: Optimized creating bytes and bytearray from byte-like objects
+ and iterables. Speed up to 3 times for short objects. Original patch by
+ Naoki Inada.
+
- Issue #26823: Large sections of repeated lines in tracebacks are now
abbreviated as "[Previous line repeated {count} more times]" by the builtin
traceback rendering. Patch by Emanuel Barry.