diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2011-11-10 20:47:38 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2011-11-10 20:47:38 (GMT) |
commit | de20b0b50e7b28a8f6eba8fb7e6f18063d5709b4 (patch) | |
tree | d5a4b350abfaf0c6f6cacfe046079caf95529753 /Misc | |
parent | 9f4b1e9c50da83b51a4b0c7ee7d7dc3ef94a0cf6 (diff) | |
download | cpython-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/NEWS | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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. |