summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2011-11-22 21:01:28 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2011-11-22 21:01:28 (GMT)
commit60b385e81361f43720b45b750243b39ce420a673 (patch)
tree98b62a8f3c54f0619e819271bca622e159f67cef /Misc
parenta233df885b15ada37bb04e06aa465e8d4554b228 (diff)
downloadcpython-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/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 4e43b45..7992e8b 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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