commit | de20b0b50e7b28a8f6eba8fb7e6f18063d5709b4 | [log] [tgz] |
---|---|---|
author | Antoine Pitrou <solipsis@pitrou.net> | Thu Nov 10 21:47:38 2011 +0100 |
committer | Antoine Pitrou <solipsis@pitrou.net> | Thu Nov 10 21:47:38 2011 +0100 |
tree | d5a4b350abfaf0c6f6cacfe046079caf95529753 | |
parent | 9f4b1e9c50da83b51a4b0c7ee7d7dc3ef94a0cf6 [diff] [blame] |
Issue #13149: Speed up append-only StringIO objects. This is very similar to the "lazy strings" idea.
diff --git a/Misc/NEWS b/Misc/NEWS index 48094e3..2841fb7 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -365,6 +365,8 @@ 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.