From: Neal Norwitz Date: Sun, 23 Mar 2008 06:16:04 +0000 (+0000) Subject: Try to prevent the alarm going off early in tearDown X-Git-Tag: v2.6a2~152 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=acdb6fb2a58bf7a4cbeb647c2a9201eb9009f68a;p=thirdparty%2FPython%2Fcpython.git Try to prevent the alarm going off early in tearDown --- diff --git a/Lib/test/test_socketserver.py b/Lib/test/test_socketserver.py index bd25f57f7551..457d23117c1f 100644 --- a/Lib/test/test_socketserver.py +++ b/Lib/test/test_socketserver.py @@ -70,6 +70,7 @@ class SocketServerTest(unittest.TestCase): self.test_files = [] def tearDown(self): + signal_alarm(0) # Didn't deadlock. reap_children() for fn in self.test_files: @@ -78,7 +79,6 @@ class SocketServerTest(unittest.TestCase): except os.error: pass self.test_files[:] = [] - signal_alarm(0) # Didn't deadlock. def pickaddr(self, proto): if proto == socket.AF_INET: