From: Antoine Pitrou Date: Sun, 6 Mar 2011 00:53:19 +0000 (+0100) Subject: Merge fix for issue #11391 X-Git-Tag: v3.3.0a1~2986 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f874debbf37636b0f2f46f8db06be50c20b670a8;p=python Merge fix for issue #11391 --- f874debbf37636b0f2f46f8db06be50c20b670a8 diff --cc Misc/NEWS index 51a6797a44,0b5b74b937..11708b7b04 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -55,8 -31,10 +55,12 @@@ Core and Builtin 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 #9795: add context manager protocol support for nntplib.NNTP class. + - 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.