diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2011-11-22 21:01:28 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2011-11-22 21:01:28 (GMT) |
commit | 60b385e81361f43720b45b750243b39ce420a673 (patch) | |
tree | 98b62a8f3c54f0619e819271bca622e159f67cef /Misc | |
parent | a233df885b15ada37bb04e06aa465e8d4554b228 (diff) | |
download | cpython-60b385e81361f43720b45b750243b39ce420a673.zip cpython-60b385e81361f43720b45b750243b39ce420a673.tar.gz cpython-60b385e81361f43720b45b750243b39ce420a673.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
@@ -80,6 +80,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 |