summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2011-11-22 21:22:26 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2011-11-22 21:22:26 (GMT)
commit896f4714f4df78f136ebcd07f543152e73657e4d (patch)
tree32998c296ef8a78157efa635c18e3af2032d7040 /Misc
parent5e8f8104116edfcbfee2690a58391830bd9883ae (diff)
parent60b385e81361f43720b45b750243b39ce420a673 (diff)
downloadcpython-896f4714f4df78f136ebcd07f543152e73657e4d.zip
cpython-896f4714f4df78f136ebcd07f543152e73657e4d.tar.gz
cpython-896f4714f4df78f136ebcd07f543152e73657e4d.tar.bz2
Merge branch 3.2
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 0b228ef..6350818 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -83,6 +83,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