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.
This commit is contained in:
Guido van Rossum 2002-07-19 19:23:54 +00:00
parent 36eb4b2d7e
commit 246a58a10b
1 changed files with 0 additions and 6 deletions

View File

@ -381,8 +381,6 @@ class BasicTCPTest(SocketConnectedTest):
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 @@ class BasicTCPTest(SocketConnectedTest):
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 @@ class BasicUDPTest(ThreadedUDPSocketTest):
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):