diff options
author | Barry Warsaw <barry@python.org> | 2011-07-19 22:28:30 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2011-07-19 22:28:30 (GMT) |
commit | d460a76e9eea15aee25c47de30a96b8f4e158929 (patch) | |
tree | 15a00b710efb57f1005e40437a1a71af474a7b6e /Misc | |
parent | 4634676cec29def3c70cf84ba00e6d7586bbaab7 (diff) | |
download | cpython-d460a76e9eea15aee25c47de30a96b8f4e158929.zip cpython-d460a76e9eea15aee25c47de30a96b8f4e158929.tar.gz cpython-d460a76e9eea15aee25c47de30a96b8f4e158929.tar.bz2 |
- 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.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 11 |
1 files changed, 9 insertions, 2 deletions
@@ -14,8 +14,8 @@ Core and Builtins format string that contains positional fields. Initial patch by Julian Berman. -- Issue #11627: Fix segfault when __new__ on a exception returns a non-exception - class. +- Issue #11627: Fix segfault when __new__ on a exception returns a + non-exception class. - Issue #12149: Update the method cache after a type's dictionnary gets cleared by the garbage collector. This fixes a segfault when an instance @@ -71,6 +71,13 @@ Library - Issue #12451: xml.dom.pulldom: parse() now opens files in binary mode instead of the text mode (using the locale encoding) to avoid encoding issues. +Extension Modules +----------------- + +- 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. + C-API ----- |