summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-02-03 09:30:10 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-02-03 09:30:10 (GMT)
commit87d0b45485e1042b0eae8aedf98fa3ebb29846b8 (patch)
treeed9f1f1a2c2b41ffc2da17d9f42459222e335420 /Misc
parent83e802796c80f46be616b48020356f7f51be533d (diff)
downloadcpython-87d0b45485e1042b0eae8aedf98fa3ebb29846b8.zip
cpython-87d0b45485e1042b0eae8aedf98fa3ebb29846b8.tar.gz
cpython-87d0b45485e1042b0eae8aedf98fa3ebb29846b8.tar.bz2
Issue #15381: Optimized io.BytesIO to make less allocations and copyings.
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 a6cc4b5..4952455 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -232,6 +232,8 @@ Core and Builtins
Library
-------
+- Issue #15381: Optimized io.BytesIO to make less allocations and copyings.
+
- Issue #22818: Splitting on a pattern that could match an empty string now
raises a warning. Patterns that can only match empty strings are now
rejected.