[issue5596] memory leaks in py3k

2010-02-09 Thread Florent Xicluna
Changes by Florent Xicluna : -- status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://ma

[issue5596] memory leaks in py3k

2009-12-13 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- resolution: -> fixed stage: needs patch -> committed/rejected ___ Python tracker ___ ___ Python-bugs-li

[issue5596] memory leaks in py3k

2009-12-08 Thread Antoine Pitrou
Antoine Pitrou added the comment: No leaks anymore! http://mail.python.org/pipermail/python-checkins/2009-December/088162.html Thanks flox! -- ___ Python tracker ___

[issue5596] memory leaks in py3k

2009-12-08 Thread Antoine Pitrou
Antoine Pitrou added the comment: I've committed fixes to test_urllib and test_zipimport_support similar to the ones you proposed. Thank you! -- ___ Python tracker ___ __

[issue5596] memory leaks in py3k

2009-12-07 Thread Senthil Kumaran
Changes by Senthil Kumaran : -- nosy: +orsenthil ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyt

[issue5596] memory leaks in py3k

2009-12-07 Thread R. David Murray
Changes by R. David Murray : -- nosy: -r.david.murray ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://ma

[issue5596] memory leaks in py3k

2009-12-07 Thread flox
Changes by flox : Added file: http://bugs.python.org/file15486/issue5596_zipimport_support_py3k.diff ___ Python tracker ___ ___ Python-bugs-li

[issue5596] memory leaks in py3k

2009-12-07 Thread flox
flox added the comment: Another false-positive in test_zipimport_support. Both on 2.7 and 3.2. Patch attached. -- Added file: http://bugs.python.org/file15485/issue5596_zipimport_support.diff ___ Python tracker __

[issue5596] memory leaks in py3k

2009-12-07 Thread flox
Changes by flox : -- versions: +Python 2.7 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.or

[issue5596] memory leaks in py3k

2009-12-07 Thread flox
flox added the comment: And the test_urllib may leak on 2.7, too. Patch attached. -- Added file: http://bugs.python.org/file15482/issue5596_urllib.diff ___ Python tracker ___ __

[issue5596] memory leaks in py3k

2009-12-07 Thread flox
flox added the comment: Patch for the test refleaks: * test_pipes * test_urllib -- ___ Python tracker ___ ___ Python-bugs-list maili

[issue5596] memory leaks in py3k

2009-12-07 Thread flox
Changes by flox : Added file: http://bugs.python.org/file15480/issue5596_pipes_py3k.diff ___ Python tracker ___ ___ Python-bugs-list mailing li

[issue5596] memory leaks in py3k

2009-12-07 Thread flox
Changes by flox : Added file: http://bugs.python.org/file15479/issue5596_urllib_py3k.diff ___ Python tracker ___ ___ Python-bugs-list mailing l

[issue5596] memory leaks in py3k

2009-12-07 Thread flox
flox added the comment: test_textwrap seems OK with r76697 I still have leaks on test_pipes and test_urllib: ~ $ ./python Lib/test/regrtest.py -R : test_textwrap \ test_pipes test_urllib test_pipes leaked [0, -26, 0, 26] references, sum=0 test_pipes leaked [0, -26, 26, -26] refere

[issue5596] memory leaks in py3k

2009-12-05 Thread Andrew Svetlov
Changes by Andrew Svetlov : -- nosy: +asvetlov ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pytho

[issue5596] memory leaks in py3k

2009-10-30 Thread R. David Murray
R. David Murray added the comment: And there was much rejoicing :) -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubsc

[issue5596] memory leaks in py3k

2009-10-30 Thread Antoine Pitrou
Antoine Pitrou added the comment: After quite a bit of work, here is the new status as of r75970: test_textwrap leaked [0, -206] references, sum=-206 test_urllib leaked [2, 0] references, sum=2 -- ___ Python tracker

[issue5596] memory leaks in py3k

2009-10-27 Thread Antoine Pitrou
Antoine Pitrou added the comment: test_asyncore and test_httpservers should now be fixed. -- ___ Python tracker ___ ___ Python-bugs-li

[issue5596] memory leaks in py3k

2009-10-27 Thread Antoine Pitrou
Antoine Pitrou added the comment: With r75820: test_asyncore leaked [153, -152] references, sum=1 test_distutils leaked [0, 2] references, sum=2 test_httpservers leaked [0, 259] references, sum=259 test_pipes leaked [23, 0] references, sum=23 test_threaded_import leaked [1, 0] references, sum=1

[issue5596] memory leaks in py3k

2009-10-14 Thread Antoine Pitrou
Antoine Pitrou added the comment: With r75397: test___all__ leaked [1, 1] references, sum=2 test_asyncore leaked [1, 0] references, sum=1 test_distutils leaked [0, 2] references, sum=2 test_httpservers leaked [-259, 0] references, sum=-259 test_os leaked [-23, 23] references, sum=0 test_pydoc l

[issue5596] memory leaks in py3k

2009-07-21 Thread Antoine Pitrou
Antoine Pitrou added the comment: With the py3k branch head (r74140): test_urllib leaked [6, 4] references, sum=10 test_urllib2 leaked [227, 227] references, sum=454 -- title: memory leaks in 3.1 -> memory leaks in py3k versions: +Python 3.2 -Python 3.1 ___