[issue19313] reference leaks

2013-10-20 Thread Nick Coghlan
Nick Coghlan added the comment: Before: $ ./python -m test -R 3:3 test_ast [1/1] test_ast beginning 6 repetitions 123456 .. test_ast leaked [6885, 6885, 6885] references, sum=20655 test_ast leaked [4888, 4890, 4890] memory blocks, sum=14668 1 test failed: test_ast After: $ ./python -m

[issue19313] reference leaks

2013-10-20 Thread Roundup Robot
Roundup Robot added the comment: New changeset 84a8b797c5c5 by Nick Coghlan in branch 'default': Close #19313: remove no longer needed Py_XINCREF http://hg.python.org/cpython/rev/84a8b797c5c5 -- nosy: +python-dev resolution: -> fixed stage: -> committed/rejected status: open -> closed

[issue19313] reference leaks

2013-10-20 Thread Nick Coghlan
Nick Coghlan added the comment: Just spotted the bug in http://hg.python.org/cpython/rev/b4a325275fb0 The "Py_XINCREF(name);" call should have been removed, as it's the counterpart to the removed "Py_CLEAR(u->u_qualname);" call -- nosy: +ncoghlan __

[issue19313] reference leaks

2013-10-20 Thread Nick Coghlan
Changes by Nick Coghlan : -- assignee: benjamin.peterson -> ncoghlan ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscr

[issue19313] reference leaks

2013-10-20 Thread Christian Heimes
Changes by Christian Heimes : -- nosy: +christian.heimes ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:

[issue19313] reference leaks

2013-10-20 Thread Antoine Pitrou
New submission from Antoine Pitrou: Given the huge leakage in test_ast, it looks like a compiler issue. results for 68a7bc8bb663 on branch "default" test_grammar leaked [3, 3, 3] references, sum=9 test_opcodes leaked [16, 16, 16] references, sum=48 t