diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2011-05-11 23:57:53 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2011-05-11 23:57:53 (GMT) |
commit | 3486a98dcd7f11215b61be3428edbbc9b6aa3164 (patch) | |
tree | 3077952f72041cedc71b79469e76c4e577ff2ec5 /Misc | |
parent | e9c7d6c3d90667727b668248d2a8191cfefa2528 (diff) | |
download | cpython-3486a98dcd7f11215b61be3428edbbc9b6aa3164.zip cpython-3486a98dcd7f11215b61be3428edbbc9b6aa3164.tar.gz cpython-3486a98dcd7f11215b61be3428edbbc9b6aa3164.tar.bz2 |
Issue #9971: Write an optimized implementation of BufferedReader.readinto().
Patch by John O'Connor.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/ACKS | 1 | ||||
-rw-r--r-- | Misc/NEWS | 4 |
2 files changed, 5 insertions, 0 deletions
@@ -645,6 +645,7 @@ Neal Norwitz Michal Nowikowski Steffen Daode Nurpmeso Nigel O'Brian +John O'Connor Kevin O'Connor Tim O'Malley Pascal Oberndoerfer @@ -142,6 +142,10 @@ Core and Builtins Library ------- + +- Issue #9971: Write an optimized implementation of BufferedReader.readinto(). + Patch by John O'Connor. + - Issue #1028: Tk returns invalid Unicode null in %A: UnicodeDecodeError. With Tk < 8.5 _tkinter.c:PythonCmd() raised UnicodeDecodeError, caused IDLE to exit. Converted to valid Unicode null in PythonCmd(). |