[issue25745] Reference leaks in test_curses

2016-05-08 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ _

[issue25745] Reference leaks in test_curses

2016-05-08 Thread Roundup Robot
Roundup Robot added the comment: New changeset afed12943ddd by Serhiy Storchaka in branch '3.5': Issue #25745: Fixed leaking a userptr in curses panel destructor. https://hg.python.org/cpython/rev/afed12943ddd New changeset 1662b41e1663 by Serhiy Storchaka in branch '2.7': Issue #25745: Fixed le

[issue25745] Reference leaks in test_curses

2016-05-06 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Here is simple patch that fixes a leak. -- keywords: +patch stage: needs patch -> patch review Added file: http://bugs.python.org/file42754/curses_panel_dealloc_userptr.patch ___ Python tracker

[issue25745] Reference leaks in test_curses

2016-05-06 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Thank you for the tip Berker. Now I see how to fix the leak. -- assignee: -> serhiy.storchaka ___ Python tracker ___

[issue25745] Reference leaks in test_curses

2016-05-06 Thread Berker Peksag
Berker Peksag added the comment: In case someone wants to work on this, the suspicious tests are test_userptr_memory_leak and test_userptr_segfault. See also issue 18113. -- nosy: +berker.peksag stage: -> needs patch versions: +Python 3.5 ___ Python

[issue25745] Reference leaks in test_curses

2015-11-27 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: $ ./python -m test.regrtest -uall -R 3:3 test_curses [1/1] test_curses beginning 6 repetitions 123456 . test_curses leaked [2, 2, 2] references, sum=6 test_curses leaked [0, 1, 2] memory blocks, sum=3 1 test failed: test_curses -- components: Ext