diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2008-09-25 04:15:27 +0000 |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2008-09-25 04:15:27 +0000 |
commit | 6fea2339d84fb46826834fd3e1721d8814849319 (patch) | |
tree | 7fa43c03e7fa100a5baf36fdda75a522d399dd84 /Objects | |
parent | 78cb491de3726c35c799448dfb5c29e550c442a1 (diff) | |
download | cpython-git-6fea2339d84fb46826834fd3e1721d8814849319.tar.gz |
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.
........
Diffstat (limited to 'Objects')
-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 |