[Python-checkins] bpo-31234: test_httpservers joins the server thread (#3188)

Victor Stinner webhook-mailer at python.org
Tue Aug 22 12:05:10 EDT 2017


https://github.com/python/cpython/commit/830d7d2936434ace113822294acce82f62cde41b
commit: 830d7d2936434ace113822294acce82f62cde41b
branch: master
author: Victor Stinner <victor.stinner at gmail.com>
committer: GitHub <noreply at github.com>
date: 2017-08-22T18:05:07+02:00
summary:

bpo-31234: test_httpservers joins the server thread (#3188)

files:
M Lib/test/test_httpservers.py

diff --git a/Lib/test/test_httpservers.py b/Lib/test/test_httpservers.py
index fb4ae1928ba..8cddcdc4384 100644
--- a/Lib/test/test_httpservers.py
+++ b/Lib/test/test_httpservers.py
@@ -56,6 +56,7 @@ def run(self):
 
     def stop(self):
         self.server.shutdown()
+        self.join()
 
 
 class BaseTestCase(unittest.TestCase):



More information about the Python-checkins mailing list