summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAmaury Forgeot d'Arc <amauryfa@gmail.com>2011-08-30 20:07:20 (GMT)
committerAmaury Forgeot d'Arc <amauryfa@gmail.com>2011-08-30 20:07:20 (GMT)
commitdd2f8b0b776bdc0ad062f183403aa1b5a2629d39 (patch)
tree9f147bcdda18773a0a45c8da58d4ecc1155057c5 /Misc
parent7a18d21230b4efb203a9a2ce9972962a2bf8fe04 (diff)
parentfaecc3880971eb916c6769e443adfeca4d474218 (diff)
downloadcpython-dd2f8b0b776bdc0ad062f183403aa1b5a2629d39.zip
cpython-dd2f8b0b776bdc0ad062f183403aa1b5a2629d39.tar.gz
cpython-dd2f8b0b776bdc0ad062f183403aa1b5a2629d39.tar.bz2
Merge from 3.2:
- Issue #9651: Fix a crash when ctypes.create_string_buffer(0) was passed to file.write() - Issue #11241: subclasses of ctypes.Array can now be subclassed.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS5
1 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index fc9d65c..08a2078 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -1229,6 +1229,11 @@ Tools/Demos
Extension Modules
-----------------
+- Issue #11241: subclasses of ctypes.Array can now be subclassed.
+
+- Issue #9651: Fix a crash when ctypes.create_string_buffer(0) was passed to
+ some functions like file.write().
+
- Issue #10309: Define _GNU_SOURCE so that mremap() gets the proper
signature. Without this, architectures where sizeof void* != sizeof int are
broken. Patch given by Hallvard B Furuseth.