summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2011-03-06 00:50:56 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2011-03-06 00:50:56 (GMT)
commit80d3610bc36e484fbe7b7ccce366a73314505a16 (patch)
treec556a1c12243ab1aff37c19cb4f12a83fafd9d50 /Misc
parentd1b1991fd426259c20ef044388235af5cc689a7c (diff)
parent7b50c2c6aed2754f205835420d7450f2e401ebfd (diff)
downloadcpython-80d3610bc36e484fbe7b7ccce366a73314505a16.zip
cpython-80d3610bc36e484fbe7b7ccce366a73314505a16.tar.gz
cpython-80d3610bc36e484fbe7b7ccce366a73314505a16.tar.bz2
Merge fix for issue #11391
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 fcbcc88..0b5b74b 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -31,6 +31,10 @@ Core and Builtins
Library
-------
+- Issue #11391: Writing to a mmap object created with
+ ``mmap.PROT_READ|mmap.PROT_EXEC`` would segfault instead of raising a
+ TypeError. Patch by Charles-François Natali.
+
- 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.