diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2008-09-25 04:12:50 +0000 |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2008-09-25 04:12:50 +0000 |
commit | e86b07cc9ad51baa4f5a2854f8a03e7d1b77b817 (patch) | |
tree | a916d0dfacb55a51a97db4b1dae706f06fa343f1 /Objects/obmalloc.c | |
parent | 52d52f185ab6a7f215e975b13a5bbf3f01bdf3a4 (diff) | |
download | cpython-git-e86b07cc9ad51baa4f5a2854f8a03e7d1b77b817.tar.gz |
Bug #3951: Py_USING_MEMORY_DEBUGGER should not be enabled by default.
Diffstat (limited to 'Objects/obmalloc.c')
-rw-r--r-- | Objects/obmalloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 |