Remove a few lines that aren't used and cause problems on platforms
where recvfrom() on a TCP stream returns None for the address.
This should address the remaining problems on FreeBSD.
diff --git a/Lib/test/test_socket.py b/Lib/test/test_socket.py
index d358966..cd23f8b 100644
--- a/Lib/test/test_socket.py
+++ b/Lib/test/test_socket.py
@@ -381,8 +381,6 @@
     def testRecvFrom(self):
         """Testing large recvfrom() over TCP."""
         msg, addr = self.cli_conn.recvfrom(1024)
-        hostname, port = addr
-        ##self.assertEqual(hostname, socket.gethostbyname('localhost'))
         self.assertEqual(msg, MSG)
 
     def _testRecvFrom(self):
@@ -393,8 +391,6 @@
         seg1, addr = self.cli_conn.recvfrom(len(MSG)-3)
         seg2, addr = self.cli_conn.recvfrom(1024)
         msg = seg1 + seg2
-        hostname, port = addr
-        ##self.assertEqual(hostname, socket.gethostbyname('localhost'))
         self.assertEqual(msg, MSG)
 
     def _testOverFlowRecvFrom(self):
@@ -451,8 +447,6 @@
     def testRecvFrom(self):
         """Testing recvfrom() over UDP."""
         msg, addr = self.serv.recvfrom(len(MSG))
-        hostname, port = addr
-        ##self.assertEqual(hostname, socket.gethostbyname('localhost'))
         self.assertEqual(msg, MSG)
 
     def _testRecvFrom(self):