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 vstinner
Recipients serhiy.storchaka, vstinner
Date 2017-07-12.13:47:50
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1499867270.29.0.739652196205.issue30908@psf.upfronthosting.co.za>
In-reply-to
Content
> This isn't specific to test_keywords. Dangling threads occurred even if replace the test body with just "return". This is caused by setUp/tearDown or setUpClass/tearDownClass.

Right, see my PR #2680. The general problem is that tearDownClass() seems to be called while the test case instance is still alive and so didn't clear its attributes. But I wrote a single line fix instead of trying to fix unittest or regrtest :-)
History
Date User Action Args
2017-07-12 13:47:50vstinnersetrecipients: + vstinner, serhiy.storchaka
2017-07-12 13:47:50vstinnersetmessageid: <1499867270.29.0.739652196205.issue30908@psf.upfronthosting.co.za>
2017-07-12 13:47:50vstinnerlinkissue30908 messages
2017-07-12 13:47:50vstinnercreate