[issue17469] Fix sys.getallocatedblocks() when running on valgrind

2013-04-05 Thread Antoine Pitrou
Antoine Pitrou added the comment: Patch committed, thank you! -- resolution: -> fixed stage: -> committed/rejected status: open -> closed versions: +Python 3.4 ___ Python tracker _

[issue17469] Fix sys.getallocatedblocks() when running on valgrind

2013-04-05 Thread Roundup Robot
Roundup Robot added the comment: New changeset 2bf154ca43c6 by Antoine Pitrou in branch 'default': Issue #17469: Fix _Py_GetAllocatedBlocks() and sys.getallocatedblocks() when running on valgrind. http://hg.python.org/cpython/rev/2bf154ca43c6 -- nosy: +python-dev __

[issue17469] Fix sys.getallocatedblocks() when running on valgrind

2013-03-18 Thread STINNER Victor
Changes by STINNER Victor : -- nosy: +pitrou ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python

[issue17469] Fix sys.getallocatedblocks() when running on valgrind

2013-03-18 Thread Piotr Ożarowski
New submission from Piotr Ożarowski: [Forwarding patch from Julien Cristau ] _Py_AllocatedBlocks was never incremented in PyObject_Malloc(), but would still be decremented on failure or in PyObject_Free(). -- components: Interpreter Core files: obmalloc.patch keywords: patch messages: 1