commit | daf17e9bc8aa4aae570d9746a724ba5f3fdc7cb9 | [log] [tgz] |
---|---|---|
author | Victor Stinner <victor.stinner@haypocalc.com> | Wed May 25 22:52:37 2011 +0200 |
committer | Victor Stinner <victor.stinner@haypocalc.com> | Wed May 25 22:52:37 2011 +0200 |
tree | 95d10cf2f029b0e2bdccd9bbd8fcf6193c739e6b | |
parent | 5100a405dc6abe7f28597248b3dea415c2089d4a [diff] [blame] |
Issue #12175: RawIOBase.readall() now returns None if read() returns None.
diff --git a/Misc/NEWS b/Misc/NEWS index e6fdfa4..0f2049b 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -83,6 +83,8 @@ Library ------- +- Issue #12175: RawIOBase.readall() now returns None if read() returns None. + - Issue #12175: FileIO.readall() now raises a ValueError instead of an IOError if the file is closed.