[Python-checkins] r66616 - in python/trunk: Misc/NEWS Objects/obmalloc.c
martin.v.loewis
python-checkins at python.org
Thu Sep 25 06:12:50 CEST 2008
Author: martin.v.loewis
Date: Thu Sep 25 06:12:50 2008
New Revision: 66616
Log:
Bug #3951: Py_USING_MEMORY_DEBUGGER should not be enabled by default.
Modified:
python/trunk/Misc/NEWS
python/trunk/Objects/obmalloc.c
Modified: python/trunk/Misc/NEWS
==============================================================================
--- python/trunk/Misc/NEWS (original)
+++ python/trunk/Misc/NEWS Thu Sep 25 06:12:50 2008
@@ -12,6 +12,8 @@
Core and Builtins
-----------------
+- Bug #3951: Py_USING_MEMORY_DEBUGGER should not be enabled by default.
+
Library
-------
Modified: python/trunk/Objects/obmalloc.c
==============================================================================
--- python/trunk/Objects/obmalloc.c (original)
+++ python/trunk/Objects/obmalloc.c Thu Sep 25 06:12:50 2008
@@ -677,8 +677,8 @@
/* 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
More information about the Python-checkins
mailing list