]> granicus.if.org Git - python/commitdiff
Fix typo with regards to self.PORT shadowing class variables with the same name.
authorTrent Nelson <trent.nelson@snakebite.org>
Wed, 9 Apr 2008 00:34:53 +0000 (00:34 +0000)
committerTrent Nelson <trent.nelson@snakebite.org>
Wed, 9 Apr 2008 00:34:53 +0000 (00:34 +0000)
Lib/test/test_httplib.py
Lib/test/test_socket_ssl.py

index 68c0ac3aed76139460e1d8480df0d6b8e4f8c217..fcbddd0f327eaf55533de7c01479cc8506a4e250 100644 (file)
@@ -203,7 +203,7 @@ class TimeoutTest(TestCase):
 
     def setUp(self):
         self.serv = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
-        self.PORT = test_support.bind_port(self.serv)
+        TimeoutTest.PORT = test_support.bind_port(self.serv)
         self.serv.listen(5)
 
     def tearDown(self):
@@ -215,13 +215,13 @@ class TimeoutTest(TestCase):
         HTTPConnection and into the socket.
         '''
         # default
-        httpConn = httplib.HTTPConnection(HOST, self.PORT)
+        httpConn = httplib.HTTPConnection(HOST, TimeoutTest.PORT)
         httpConn.connect()
         self.assertTrue(httpConn.sock.gettimeout() is None)
         httpConn.close()
 
         # a value
-        httpConn = httplib.HTTPConnection(HOST, self.PORT, timeout=30)
+        httpConn = httplib.HTTPConnection(HOST, TimeoutTest.PORT, timeout=30)
         httpConn.connect()
         self.assertEqual(httpConn.sock.gettimeout(), 30)
         httpConn.close()
@@ -230,7 +230,8 @@ class TimeoutTest(TestCase):
         previous = socket.getdefaulttimeout()
         socket.setdefaulttimeout(30)
         try:
-            httpConn = httplib.HTTPConnection(HOST, self.PORT, timeout=None)
+            httpConn = httplib.HTTPConnection(HOST, TimeoutTest.PORT,
+                                              timeout=None)
             httpConn.connect()
         finally:
             socket.setdefaulttimeout(previous)
index 5c49427f80c8b85b147ae30256c43b4350c9aa42..1a8af33e1fb54af10054c30303c0a705945158a9 100644 (file)
@@ -212,8 +212,8 @@ class OpenSSLServer(threading.Thread):
         try:
             # XXX TODO: on Windows, this should make more effort to use the
             # openssl.exe that would have been built by the pcbuild.sln.
-            self.PORT = test_support.find_unused_port()
-            args = (self.PORT, cert_file, key_file)
+            OpenSSLServer.PORT = test_support.find_unused_port()
+            args = (OpenSSLServer.PORT, cert_file, key_file)
             cmd = "openssl s_server -accept %d -cert %s -key %s -quiet" % args
             self.s = subprocess.Popen(cmd.split(), stdin=subprocess.PIPE,
                                        stdout=subprocess.PIPE,
@@ -225,7 +225,7 @@ class OpenSSLServer(threading.Thread):
             # let's try if it is actually up
             try:
                 s = socket.socket()
-                s.connect((HOST, self.PORT))
+                s.connect((HOST, OpenSSLServer.PORT))
                 s.close()
                 if self.s.stdout.readline() != "ERROR\n":
                     raise ValueError