https://github.com/python/cpython/commit/6c25b73194714e78975eddea3799f06f3de74647 commit: 6c25b73194714e78975eddea3799f06f3de74647 branch: 3.6 author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com> committer: Victor Stinner <victor.stinner at gmail.com> date: 2017年09月13日T03:27:54-07:00 summary: [3.6] bpo-31234: test_httpservers joins the server thread (GH-3188) (#3536) (cherry picked from commit 830d7d2936434ace113822294acce82f62cde41b) files: M Lib/test/test_httpservers.py diff --git a/Lib/test/test_httpservers.py b/Lib/test/test_httpservers.py index 4e931446b9e..22b3bf5235c 100644 --- a/Lib/test/test_httpservers.py +++ b/Lib/test/test_httpservers.py @@ -52,6 +52,7 @@ def run(self): def stop(self): self.server.shutdown() + self.join() class BaseTestCase(unittest.TestCase):