From: Martin v. Löwis Date: Thu, 25 Sep 2008 04:12:50 +0000 (+0000) Subject: Bug #3951: Py_USING_MEMORY_DEBUGGER should not be enabled by default. X-Git-Tag: v2.6~41 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e86b07cc9ad51baa4f5a2854f8a03e7d1b77b817;p=python Bug #3951: Py_USING_MEMORY_DEBUGGER should not be enabled by default. --- diff --git a/Misc/NEWS b/Misc/NEWS index 37bb634396..5d2a267228 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -12,6 +12,8 @@ What's New in Python 2.6 final Core and Builtins ----------------- +- 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