]> granicus.if.org Git - python/commitdiff
Merged revisions 86151 via svnmerge from
authorBrian Curtin <brian.curtin@gmail.com>
Thu, 4 Nov 2010 03:54:23 +0000 (03:54 +0000)
committerBrian Curtin <brian.curtin@gmail.com>
Thu, 4 Nov 2010 03:54:23 +0000 (03:54 +0000)
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r86151 | brian.curtin | 2010-11-03 22:41:43 -0500 (Wed, 03 Nov 2010) | 3 lines

  Fix three ResourceWarnings.
  Mimic the clientTearDown from ThreadedTCPSocketTest, closing the socket.
........

Lib/test/test_socket.py

index c2aa936aa9a3baff016221eae0f62ac68df0a586..00bf948a658e15699ee8669ce7992d03d16015ba 100644 (file)
@@ -186,6 +186,11 @@ class ThreadedUDPSocketTest(SocketUDPTest, ThreadableTest):
     def clientSetUp(self):
         self.cli = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
 
+    def clientTearDown(self):
+        self.cli.close()
+        self.cli = None
+        ThreadableTest.clientTearDown(self)
+
 class SocketConnectedTest(ThreadedTCPSocketTest):
 
     def __init__(self, methodName='runTest'):