This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author methane
Recipients jayyin11043, methane
Date 2018-04-09.10:09:06
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1523268546.69.0.682650639539.issue33099@psf.upfronthosting.co.za>
In-reply-to
Content
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 called.

These leaks makes dangling threads.  It caused hang in test_poplib shutdown process.

Additionally, the error is not printed in these cases.  It makes harder to fix real problem.
History
Date User Action Args
2018-04-09 10:09:06methanesetrecipients: + methane, jayyin11043
2018-04-09 10:09:06methanesetmessageid: <1523268546.69.0.682650639539.issue33099@psf.upfronthosting.co.za>
2018-04-09 10:09:06methanelinkissue33099 messages
2018-04-09 10:09:06methanecreate