diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2011-11-22 21:20:13 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2011-11-22 21:20:13 (GMT) |
commit | 53853c3fa960c34359c2721a28fdfae288b6cb0d (patch) | |
tree | 6e116694cf356c8e200ae8b99b918375dcab2189 /Misc | |
parent | 6392d7f68bbc11e3ad3417f52c93f33dcc0c4cd0 (diff) | |
download | cpython-53853c3fa960c34359c2721a28fdfae288b6cb0d.zip cpython-53853c3fa960c34359c2721a28fdfae288b6cb0d.tar.gz cpython-53853c3fa960c34359c2721a28fdfae288b6cb0d.tar.bz2 |
Issue #13415: os.unsetenv() doesn't ignore errors anymore.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -79,6 +79,8 @@ Core and Builtins 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 |