[issue23849] Leaks in test_deque

2015-04-04 Thread Raymond Hettinger
Raymond Hettinger added the comment: Looks like Benjamin had fixed this earlier today: https://mail.python.org/pipermail/python-checkins/2015-April/135444.html -- resolution: -> fixed status: open -> closed ___ Python tracker

[issue23849] Leaks in test_deque

2015-04-04 Thread Raymond Hettinger
Raymond Hettinger added the comment: Hmm, I don't see this on my build (Mac OS/X 10.10.2 clang-600.0.57): $ ./python.exe -m test.regrtest -R 3:3:reflog test_deque [1/1] test_deque beginning 6 repetitions 123456 .. 1 test OK. Nor do I see any flux using the test_deque's down repeat loop: $

[issue23849] Leaks in test_deque

2015-04-04 Thread Raymond Hettinger
Raymond Hettinger added the comment: Thanks, I'll take a look. -- assignee: -> rhettinger ___ Python tracker ___ ___ Python-bugs-list

[issue23849] Leaks in test_deque

2015-04-02 Thread STINNER Victor
Changes by STINNER Victor : -- nosy: +haypo ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python

[issue23849] Leaks in test_deque

2015-04-02 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: $ ./python -m test.regrtest -R 3:3:reflog test_deque [1/1] test_deque beginning 6 repetitions 123456 .. test_deque leaked [91, 91, 91] references, sum=273 test_deque leaked [21, 23, 23] memory blocks, sum=67 1 test failed: test_deque -- compo