diff options
author | Benjamin Peterson <benjamin@python.org> | 2009-12-03 03:01:27 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2009-12-03 03:01:27 (GMT) |
commit | 05159c4a7b37403613772a0883bd927bb57e8060 (patch) | |
tree | bd3c0dd69a88c3605039545f90ee6246637cac24 /Misc | |
parent | cb134d7d88baf08b9edcc4bf653be95bb2718bd2 (diff) | |
download | cpython-05159c4a7b37403613772a0883bd927bb57e8060.zip cpython-05159c4a7b37403613772a0883bd927bb57e8060.tar.gz cpython-05159c4a7b37403613772a0883bd927bb57e8060.tar.bz2 |
Merged revisions 76644 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r76644 | benjamin.peterson | 2009-12-02 20:52:39 -0600 (Wed, 02 Dec 2009) | 4 lines
disable pymalloc tricks with the --with-valgrind option #2422
Patch from James Henstridge.
........
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -143,6 +143,11 @@ C-API ``const char *`` as the string is stored beyond the call. +- Issue #2422: When compiled with the ``--with-valgrind`` option, the + pymalloc allocator will be automatically disabled when running under + Valgrind. This gives improved memory leak detection when running + under Valgrind, while taking advantage of pymalloc at other times. + Library ------- |