diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2011-11-15 23:56:10 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2011-11-15 23:56:10 (GMT) |
commit | 56a220ae4eb5f663f7ec667438f87adf482845ca (patch) | |
tree | 1ba2b0f5f8be00eb4f34d0cff19bb9c3dac25dff /Misc | |
parent | 2821644d8add382226b75989a9e89a8c24b2d0dc (diff) | |
download | cpython-56a220ae4eb5f663f7ec667438f87adf482845ca.zip cpython-56a220ae4eb5f663f7ec667438f87adf482845ca.tar.gz cpython-56a220ae4eb5f663f7ec667438f87adf482845ca.tar.bz2 |
Issue #13393: BufferedReader.read1() now asks the full requested size to
the raw stream instead of limiting itself to the buffer size.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -10,6 +10,9 @@ What's New in Python 3.3 Alpha 1? Core and Builtins ----------------- +- Issue #13393: BufferedReader.read1() now asks the full requested size to + the raw stream instead of limiting itself to the buffer size. + - Issue #13392: Writing a pyc file should now be atomic under Windows as well. - Issue #13333: The UTF-7 decoder now accepts lone surrogates (the encoder |