summaryrefslogtreecommitdiff
path: root/Misc
diff options
context:
space:
mode:
authorR. David Murray <rdmurray@bitdance.com>2011-03-03 18:12:34 +0000
committerR. David Murray <rdmurray@bitdance.com>2011-03-03 18:12:34 +0000
commita1729fd624a168cfd26babfecbb2efef996d8152 (patch)
tree0fa6d0670ba44a8be0ab4eb467f85976b347ad1f /Misc
parent079802a8d7bad68ed382512119a3baf2caf3b220 (diff)
downloadcpython-a1729fd624a168cfd26babfecbb2efef996d8152.tar.gz
Merged revisions 88730 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r88730 | r.david.murray | 2011-03-03 13:03:36 -0500 (Thu, 03 Mar 2011) | 2 lines #11306: Treat EROFS like EACCES when making a 'file is read-only' decision ........
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index d5512f26c0..1e2a14f438 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -28,6 +28,10 @@ Core and Builtins
Library
-------
+- Issue #11306: mailbox in certain cases adapts to an inability to open
+ certain files in read-write mode. Previously it detected this by
+ checking for EACCES, now it also checks for EROFS.
+
- Issue #11265: asyncore now correctly handles EPIPE, EBADF and EAGAIN errors
on accept(), send() and recv().