diff options
author | Benjamin Peterson <benjamin@python.org> | 2009-12-03 02:52:39 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2009-12-03 02:52:39 (GMT) |
commit | 91c12ebc3dc6472ea486ab5e4aa38139283d48ad (patch) | |
tree | 09790d65d1bd0daacc659f7fd32f44cfb9afc99a /Misc | |
parent | 0299d0d7f03653400a563e69d6d2e062cf47320a (diff) | |
download | cpython-91c12ebc3dc6472ea486ab5e4aa38139283d48ad.zip cpython-91c12ebc3dc6472ea486ab5e4aa38139283d48ad.tar.gz cpython-91c12ebc3dc6472ea486ab5e4aa38139283d48ad.tar.bz2 |
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
@@ -487,6 +487,11 @@ Core and Builtins - Issue #3739: The unicode-internal encoder now reports the number of characters consumed like any other encoder (instead of the number of bytes). +- 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 ------- |