[issue31238] pydoc: ServerThread.stop() leaves a dangling thread

2018-06-01 Thread STINNER Victor
STINNER Victor added the comment: New changeset f3297433e309e9591eaa3f36e1d7887e9d0620d7 by Victor Stinner in branch '3.6': bpo-31238: pydoc ServerThread.stop() now joins itself (GH-3151) (GH-7324) https://github.com/python/cpython/commit/f3297433e309e9591eaa3f36e1d7887e9d0620d7 --

[issue31238] pydoc: ServerThread.stop() leaves a dangling thread

2018-06-01 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +6953 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue31238] pydoc: ServerThread.stop() leaves a dangling thread

2017-08-22 Thread STINNER Victor
STINNER Victor added the comment: I left Python 2.7 and 3.6 unchanged to focus on fixing dangling threads and other similar bugs in the master branch first. I will see later if we really need to backport the fix to stable branches. In the meanwhile, I close the issue. --

[issue31238] pydoc: ServerThread.stop() leaves a dangling thread

2017-08-22 Thread STINNER Victor
Changes by STINNER Victor : -- resolution: -> fixed stage: -> resolved status: open -> closed ___ Python tracker ___

[issue31238] pydoc: ServerThread.stop() leaves a dangling thread

2017-08-22 Thread STINNER Victor
Changes by STINNER Victor : -- pull_requests: +3215 ___ Python tracker ___ ___

[issue31238] pydoc: ServerThread.stop() leaves a dangling thread

2017-08-21 Thread STINNER Victor
STINNER Victor added the comment: New changeset 4cab2cd0c05fcda5fcb128c9eb230253fff88c21 by Victor Stinner in branch 'master': bpo-31238: pydoc ServerThread.stop() now joins itself (#3151) https://github.com/python/cpython/commit/4cab2cd0c05fcda5fcb128c9eb230253fff88c21 --

[issue31238] pydoc: ServerThread.stop() leaves a dangling thread

2017-08-21 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- nosy: +pitrou ___ Python tracker ___ ___

[issue31238] pydoc: ServerThread.stop() leaves a dangling thread

2017-08-18 Thread STINNER Victor
STINNER Victor added the comment: This issue is similar to bpo-31151: socketserver ForkingMixIn.server_close() leaks zombie processes. -- ___ Python tracker

[issue31238] pydoc: ServerThread.stop() leaves a dangling thread

2017-08-18 Thread STINNER Victor
Changes by STINNER Victor : -- pull_requests: +3185 ___ Python tracker ___ ___

[issue31238] pydoc: ServerThread.stop() leaves a dangling thread

2017-08-18 Thread STINNER Victor
New submission from STINNER Victor: When using https://github.com/python/cpython/pull/3138 I see that test_pydoc leaves a dangling thread. The bug comes from test_server() which uses pydoc ServerThread. ServerThread.stop() and test_pydoc don't join the thread. Moreover,