diff options
author | Benjamin Peterson <benjamin@python.org> | 2008-08-27 00:31:37 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2008-08-27 00:31:37 (GMT) |
commit | 9edd2bd35cfc5f33b53c5def02cac23e7bb6e84b (patch) | |
tree | 4ccbdce39b24128ed28c1979cb07eaf361f0ae62 /Misc | |
parent | 4b24a42f3c72b4f88da8989a77a175e654dbdcbb (diff) | |
download | cpython-9edd2bd35cfc5f33b53c5def02cac23e7bb6e84b.zip cpython-9edd2bd35cfc5f33b53c5def02cac23e7bb6e84b.tar.gz cpython-9edd2bd35cfc5f33b53c5def02cac23e7bb6e84b.tar.bz2 |
Fix #3651 various memory leaks when using the buffer interface
by Amaury Forgeot d'Arc
Reviewer: Antoine Pitrou
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -21,6 +21,10 @@ Core and Builtins - Issue #3663: Py_None was decref'd when printing SyntaxErrors. +- Issue #3651: Fix various memory leaks when using the buffer + interface, or when the "s#" code of PyArg_ParseTuple is given a + bytes object. + - Issue #3657: Fix uninitialized memory read when pickling longs. Found by valgrind. |