summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorThomas Heller <theller@ctypes.org>2010-08-08 17:58:53 (GMT)
committerThomas Heller <theller@ctypes.org>2010-08-08 17:58:53 (GMT)
commit864cc6703a7c4399295b3601f49e0065639443bf (patch)
tree03fc3dc987860d40c7959cdfcb700a8281832ef9 /Misc
parent93d768d6328ae6c0a7dd207e5b1790df6686fd62 (diff)
downloadcpython-864cc6703a7c4399295b3601f49e0065639443bf.zip
cpython-864cc6703a7c4399295b3601f49e0065639443bf.tar.gz
cpython-864cc6703a7c4399295b3601f49e0065639443bf.tar.bz2
Fix issue5504: ctypes does now work with systems where mmap can't be
PROT_WRITE and PROT_EXEC.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 2e7297a..5159bf2 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -24,6 +24,9 @@ Core and Builtins
Extensions
----------
+- Issue #5504 - ctypes should now work with systems where mmap can't
+ be PROT_WRITE and PROT_EXEC.
+
- Issue #9507: Named tuple repr will now automatically display the right
name in a tuple subclass.