commit | 60b385e81361f43720b45b750243b39ce420a673 | [log] [tgz] |
---|---|---|
author | Victor Stinner <victor.stinner@haypocalc.com> | Tue Nov 22 22:01:28 2011 +0100 |
committer | Victor Stinner <victor.stinner@haypocalc.com> | Tue Nov 22 22:01:28 2011 +0100 |
tree | 98b62a8f3c54f0619e819271bca622e159f67cef | |
parent | a233df885b15ada37bb04e06aa465e8d4554b228 [diff] [blame] |
Issue #13415: os.unsetenv() doesn't ignore errors anymore.
diff --git a/Misc/NEWS b/Misc/NEWS index 4e43b45..7992e8b 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -80,6 +80,8 @@ Library ------- +- Issue #13415: os.unsetenv() doesn't ignore errors anymore. + - Issue #13322: Fix BufferedWriter.write() to ensure that BlockingIOError is raised when the wrapped raw file is non-blocking and the write would block. Previous code assumed that the raw write() would raise BlockingIOError, but