diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2011-03-06 00:11:03 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2011-03-06 00:11:03 (GMT) |
commit | 16a0a0b0a0b42dd42f2206a864d6325a278796f7 (patch) | |
tree | a734d6acbfcbb5f28922d7f78bad4b01894f0a27 /Misc | |
parent | 3c2ccf293619dc05b39db609be8e2cde80e0fe70 (diff) | |
download | cpython-16a0a0b0a0b42dd42f2206a864d6325a278796f7.zip cpython-16a0a0b0a0b42dd42f2206a864d6325a278796f7.tar.gz cpython-16a0a0b0a0b42dd42f2206a864d6325a278796f7.tar.bz2 |
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.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/ACKS | 1 | ||||
-rw-r--r-- | Misc/NEWS | 4 |
2 files changed, 5 insertions, 0 deletions
@@ -560,6 +560,7 @@ Piotr Meyer John Nagle Takahiro Nakayama Travers Naran +Charles-François Natali Fredrik Nehr Trent Nelson Tony Nelson @@ -37,6 +37,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 #11265: asyncore now correctly handles EPIPE, EBADF and EAGAIN errors on accept(), send() and recv(). |