[issue33099] test_poplib hangs with the changes done in PR

2021-12-13 Thread Irit Katriel
Irit Katriel added the comment: #32706 is now fixed, does that resolve this issue as well? -- nosy: +iritkatriel ___ Python tracker ___

[issue33099] test_poplib hangs with the changes done in PR

2018-04-09 Thread Skip Montanaro
Skip Montanaro added the comment: @christian.heimes I figured you probably didn't need it, but I did that work before I discovered this ticket. And as a nice bonus, I got to learn git bisect. :-) -- ___ Python tracker

[issue33099] test_poplib hangs with the changes done in PR

2018-04-09 Thread Christian Heimes
Christian Heimes added the comment: Thanks for you confirmation. I already knew which commit lead to the issue. :) The problem didn't "pop" up in my local tests or on Travis CI. I can only reproduce it locally, when I run the test in a tight loop and put extra load on the

[issue33099] test_poplib hangs with the changes done in PR

2018-04-09 Thread Skip Montanaro
Skip Montanaro added the comment: Just in case this would be useful to others, git bisect led me to this commit as the source of the problem: 61d478c71c5341cdc54e6bfb4ace4252852fd972 is the first bad commit commit 61d478c71c5341cdc54e6bfb4ace4252852fd972 Author:

[issue33099] test_poplib hangs with the changes done in PR

2018-04-09 Thread INADA Naoki
INADA Naoki added the comment: @Christian Precisely, my PR doesn't fix #32706 and #32753. It fixes only hang caused by them and print stack trace for them. -- ___ Python tracker

[issue33099] test_poplib hangs with the changes done in PR

2018-04-09 Thread Christian Heimes
Christian Heimes added the comment: This is likely a duplicate of BPO #32706 and #32753 -- nosy: +christian.heimes ___ Python tracker

[issue33099] test_poplib hangs with the changes done in PR

2018-04-09 Thread INADA Naoki
INADA Naoki added the comment: There are some resource leaks: * When error occurred in setUp() function, server thread is not stopped. It leaked threads and sockets for the server. * When error occurred in server thread's run() method, asyncore.close_all() is not

[issue33099] test_poplib hangs with the changes done in PR

2018-04-09 Thread INADA Naoki
Change by INADA Naoki : -- keywords: +patch pull_requests: +6126 stage: -> patch review ___ Python tracker ___

[issue33099] test_poplib hangs with the changes done in PR

2018-03-18 Thread Jay Yin
New submission from Jay Yin : my test hangs locally on my computer with the changes I've done in bpo-32642 but doesn't hang on TravisCI, anyone able to help with checking what's wrong here (sounds like another edge case with my env but I could be wrong) the trace for