commit | 8d7d6bcc2519066ba04f3c63d6ae8d2897a94282 | [log] [tgz] |
---|---|---|
author | Serhiy Storchaka <storchaka@gmail.com> | Wed Feb 13 12:26:58 2013 +0200 |
committer | Serhiy Storchaka <storchaka@gmail.com> | Wed Feb 13 12:26:58 2013 +0200 |
tree | 03622015920e98f626e439d72941ecdb6480b4b8 | |
parent | 34fe1b7a3db61ee1b92f495488b08532b6126450 [diff] [blame] |
Issue #11311: StringIO.readline(0) now returns an empty string as all other file-like objects.
diff --git a/Misc/NEWS b/Misc/NEWS index b7d044a..68f72c2 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -205,6 +205,9 @@ Library ------- +- Issue #11311: StringIO.readline(0) now returns an empty string as all other + file-like objects. + - Issue #16800: tempfile.gettempdir() no longer left temporary files when the disk is full. Original patch by Amir Szekely.