mirror of https://github.com/python/cpython
Merged revisions 75838 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r75838 | antoine.pitrou | 2009-10-27 19:50:52 +0100 (mar., 27 oct. 2009) | 3 lines (Hopefully) suppress transient refleaks in test_httpservers. ........
This commit is contained in:
parent
5ed353c293
commit
45ebeb8f24
|
@ -51,6 +51,7 @@ class TestServerThread(threading.Thread):
|
|||
|
||||
class BaseTestCase(unittest.TestCase):
|
||||
def setUp(self):
|
||||
self._threads = support.threading_setup()
|
||||
os.environ = support.EnvironmentVarGuard()
|
||||
self.lock = threading.Lock()
|
||||
self.thread = TestServerThread(self, self.request_handler)
|
||||
|
@ -61,6 +62,7 @@ class BaseTestCase(unittest.TestCase):
|
|||
self.lock.release()
|
||||
self.thread.stop()
|
||||
os.environ.__exit__()
|
||||
support.threading_cleanup(*self._threads)
|
||||
|
||||
def request(self, uri, method='GET', body=None, headers={}):
|
||||
self.connection = http.client.HTTPConnection('localhost', self.PORT)
|
||||
|
|
Loading…
Reference in New Issue