commit | 53853c3fa960c34359c2721a28fdfae288b6cb0d | [log] [tgz] |
---|---|---|
author | Victor Stinner <victor.stinner@haypocalc.com> | Tue Nov 22 22:20:13 2011 +0100 |
committer | Victor Stinner <victor.stinner@haypocalc.com> | Tue Nov 22 22:20:13 2011 +0100 |
tree | 6e116694cf356c8e200ae8b99b918375dcab2189 | |
parent | 6392d7f68bbc11e3ad3417f52c93f33dcc0c4cd0 [diff] [blame] |
Issue #13415: os.unsetenv() doesn't ignore errors anymore.
diff --git a/Misc/NEWS b/Misc/NEWS index 0f4e04b..1a92e2a 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -79,6 +79,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