summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2011-11-22 21:20:13 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2011-11-22 21:20:13 (GMT)
commit53853c3fa960c34359c2721a28fdfae288b6cb0d (patch)
tree6e116694cf356c8e200ae8b99b918375dcab2189 /Misc
parent6392d7f68bbc11e3ad3417f52c93f33dcc0c4cd0 (diff)
downloadcpython-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/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 0f4e04b..1a92e2a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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