diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2010-01-17 21:06:28 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2010-01-17 21:06:28 (GMT) |
commit | 173a1eedac69442362c8ed705ea7975c94ce3c93 (patch) | |
tree | f74f7df0b453dbf52c026770bfc0b6968696b02a /Misc | |
parent | 93492334df7e664d1eb1cc02ac206b0bee686568 (diff) | |
download | cpython-173a1eedac69442362c8ed705ea7975c94ce3c93.zip cpython-173a1eedac69442362c8ed705ea7975c94ce3c93.tar.gz cpython-173a1eedac69442362c8ed705ea7975c94ce3c93.tar.bz2 |
Merged revisions 77590 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
................
r77590 | mark.dickinson | 2010-01-17 21:02:55 +0000 (Sun, 17 Jan 2010) | 14 lines
Merged revisions 77589 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r77589 | mark.dickinson | 2010-01-17 20:57:56 +0000 (Sun, 17 Jan 2010) | 7 lines
Issue #7632: When Py_USING_MEMORY_DEBUGGER is defined, disable the
private memory allocation scheme in dtoa.c, along with a piece of code
that caches powers of 5 for future use. This makes it easier to
detect dtoa.c memory leaks with Valgrind or similar tools.
Patch by Stefan Krah.
........
................
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -326,6 +326,10 @@ C-API Build ----- +- Issue #7632: When Py_USING_MEMORY_DEBUGGER is defined, disable the + private memory allocation scheme in dtoa.c and use PyMem_Malloc and + PyMem_Free instead. Also disable caching of powers of 5. + - Switch to OpenSSL 0.9.8l on Windows. - Issue #6603: Change READ_TIMESTAMP macro in ceval.c so that it |