[issue36915] regrtest: when interrupted, temporary directory is not removed

2019-05-14 Thread STINNER Victor
Change by STINNER Victor : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ __

[issue36915] regrtest: when interrupted, temporary directory is not removed

2019-05-14 Thread miss-islington
miss-islington added the comment: New changeset ecd668d6d99ff03166427f02347454cfdf904a6c by Miss Islington (bot) in branch '3.7': bpo-36915: regrtest always remove tempdir of worker processes (GH-13312) https://github.com/python/cpython/commit/ecd668d6d99ff03166427f02347454cfdf904a6c --

[issue36915] regrtest: when interrupted, temporary directory is not removed

2019-05-14 Thread STINNER Victor
STINNER Victor added the comment: New changeset 3c93153f7db5dd9b06f229e61978fd9199b3c097 by Victor Stinner in branch 'master': bpo-36915: regrtest always remove tempdir of worker processes (GH-13312) https://github.com/python/cpython/commit/3c93153f7db5dd9b06f229e61978fd9199b3c097 -

[issue36915] regrtest: when interrupted, temporary directory is not removed

2019-05-14 Thread miss-islington
Change by miss-islington : -- pull_requests: +13224 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue36915] regrtest: when interrupted, temporary directory is not removed

2019-05-14 Thread STINNER Victor
Change by STINNER Victor : -- keywords: +patch pull_requests: +13222 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-

[issue36915] regrtest: when interrupted, temporary directory is not removed

2019-05-14 Thread STINNER Victor
New submission from STINNER Victor : I modified regrtest (Python test runner) to kill worker processes using SIGKILL when the main process is interrupted by CTRL+C. Problem: nothing clears temporary directories created by these worker processes. I'm working on a fix. -- components: T