diff options
author | R David Murray <rdmurray@bitdance.com> | 2014-02-24 20:48:22 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2014-02-24 20:48:22 (GMT) |
commit | 4e564c893bc3ee9a943e4868a270aed9b6de35da (patch) | |
tree | 01073f3ad59f0be11dcd9f9be432810a60e1d428 /Doc | |
parent | 4f9136459884c98b8c4696e477bb1337c8be6db6 (diff) | |
download | cpython-4e564c893bc3ee9a943e4868a270aed9b6de35da.zip cpython-4e564c893bc3ee9a943e4868a270aed9b6de35da.tar.gz cpython-4e564c893bc3ee9a943e4868a270aed9b6de35da.tar.bz2 |
whatsnew: cypthon can be compiled with address sanity checking enabled.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/whatsnew/3.4.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.4.rst b/Doc/whatsnew/3.4.rst index 78261c5..c0b7539 100644 --- a/Doc/whatsnew/3.4.rst +++ b/Doc/whatsnew/3.4.rst @@ -1484,6 +1484,11 @@ Other Build and C API Changes existing :c:func:`PyStructSequence_InitType` function. The difference is that it returns ``0`` on success and ``-1`` on failure. +* The CPython source can now be compiled using the address sanity checking + features of recent versions of GCC and clang: the false alarms in the small + object allocator have been silenced. (Contributed by Dhiru Kholia in + :issue:`18598`.) + .. _other-improvements-3.4: |