summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2014-07-29 23:41:11 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2014-07-29 23:41:11 (GMT)
commitcc66a73d27ba8b3051586221f96effef67c3bb3a (patch)
treea1d1ffa19d3b2db5d0eab3b644ffd01769ace61d /Misc
parent115171086a5ded14a2bc2519e7f774a755e7ab04 (diff)
downloadcpython-cc66a73d27ba8b3051586221f96effef67c3bb3a.zip
cpython-cc66a73d27ba8b3051586221f96effef67c3bb3a.tar.gz
cpython-cc66a73d27ba8b3051586221f96effef67c3bb3a.tar.bz2
Issue #22003: When initialized from a bytes object, io.BytesIO() now
defers making a copy until it is mutated, improving performance and memory use on some use cases. Patch by David Wilson.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS4
2 files changed, 5 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index c1c29d2..07b0647 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -1456,6 +1456,7 @@ Sue Williams
Carol Willing
Steven Willis
Frank Willison
+David Wilson
Geoff Wilson
Greg V. Wilson
J Derek Wilson
diff --git a/Misc/NEWS b/Misc/NEWS
index 479fb93..10879e9 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -113,6 +113,10 @@ Core and Builtins
Library
-------
+- Issue #22003: When initialized from a bytes object, io.BytesIO() now
+ defers making a copy until it is mutated, improving performance and
+ memory use on some use cases. Patch by David Wilson.
+
- Issue #22018: On Windows, signal.set_wakeup_fd() now also supports sockets.
A side effect is that Python depends to the WinSock library.