summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2011-11-10 20:47:38 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2011-11-10 20:47:38 (GMT)
commitde20b0b50e7b28a8f6eba8fb7e6f18063d5709b4 (patch)
treed5a4b350abfaf0c6f6cacfe046079caf95529753 /Misc
parent9f4b1e9c50da83b51a4b0c7ee7d7dc3ef94a0cf6 (diff)
downloadcpython-de20b0b50e7b28a8f6eba8fb7e6f18063d5709b4.zip
cpython-de20b0b50e7b28a8f6eba8fb7e6f18063d5709b4.tar.gz
cpython-de20b0b50e7b28a8f6eba8fb7e6f18063d5709b4.tar.bz2
Issue #13149: Speed up append-only StringIO objects.
This is very similar to the "lazy strings" idea.
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 48094e3..2841fb7 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -365,6 +365,8 @@ Core and Builtins
Library
-------
+- Issue #13149: Speed up append-only StringIO objects.
+
- Issue #13373: multiprocessing.Queue.get() could sometimes block indefinitely
when called with a timeout. Patch by Arnaud Ysmal.