From: Martin v. Löwis Date: Thu, 25 Sep 2008 04:15:27 +0000 (+0000) Subject: Merged revisions 66616 via svnmerge from X-Git-Tag: v3.0rc2~148 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6fea2339d84fb46826834fd3e1721d8814849319;p=python Merged revisions 66616 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r66616 | martin.v.loewis | 2008-09-25 06:12:50 +0200 (Do, 25 Sep 2008) | 2 lines Bug #3951: Py_USING_MEMORY_DEBUGGER should not be enabled by default. ........ --- diff --git a/Misc/NEWS b/Misc/NEWS index 1079960036..c1ab3d381d 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -15,6 +15,8 @@ Core and Builtins - Issue #1688: On Windows, the input() prompt was not correctly displayed if it contains non-ascii characters. +- Bug #3951: Py_USING_MEMORY_DEBUGGER should not be enabled by default. + Library ------- diff --git a/Objects/obmalloc.c b/Objects/obmalloc.c index fc5ccf7abe..d1586c29f8 100644 --- a/Objects/obmalloc.c +++ b/Objects/obmalloc.c @@ -677,8 +677,8 @@ extremely desirable that it be this fast. /* This is only useful when running memory debuggers such as * Purify or Valgrind. Uncomment to use. * - */ #define Py_USING_MEMORY_DEBUGGER + */ #ifdef Py_USING_MEMORY_DEBUGGER