mirror of
https://github.com/python/cpython.git
synced 2025-07-16 07:45:20 +00:00
testGetServByName shouldn't check for getservbyname - the socket module
should always have it.
This commit is contained in:
parent
940e970f6e
commit
f4433303a8
1 changed files with 17 additions and 18 deletions
|
@ -259,24 +259,23 @@ class GeneralModuleTests(unittest.TestCase):
|
|||
|
||||
def testGetServByName(self):
|
||||
"""Testing getservbyname()."""
|
||||
if hasattr(socket, 'getservbyname'):
|
||||
# try a few protocols - not everyone has telnet enabled
|
||||
found = 0
|
||||
for proto in ("telnet", "ssh", "www", "ftp"):
|
||||
try:
|
||||
socket.getservbyname(proto, 'tcp')
|
||||
found = 1
|
||||
break
|
||||
except socket.error:
|
||||
pass
|
||||
try:
|
||||
socket.getservbyname(proto, 'udp')
|
||||
found = 1
|
||||
break
|
||||
except socket.error:
|
||||
pass
|
||||
if not found:
|
||||
raise socket.error
|
||||
# try a few protocols - not everyone has telnet enabled
|
||||
found = 0
|
||||
for proto in ("telnet", "ssh", "www", "ftp"):
|
||||
try:
|
||||
socket.getservbyname(proto, 'tcp')
|
||||
found = 1
|
||||
break
|
||||
except socket.error:
|
||||
pass
|
||||
try:
|
||||
socket.getservbyname(proto, 'udp')
|
||||
found = 1
|
||||
break
|
||||
except socket.error:
|
||||
pass
|
||||
if not found:
|
||||
raise socket.error
|
||||
|
||||
def testDefaultTimeout(self):
|
||||
"""Testing default timeout."""
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue