Commit 97751fa5 authored by Benjamin Peterson's avatar Benjamin Peterson

merge 3.2

parents 9fc59c9f 863c962e
...@@ -1188,9 +1188,10 @@ class GeneralModuleTests(unittest.TestCase): ...@@ -1188,9 +1188,10 @@ class GeneralModuleTests(unittest.TestCase):
if e.errno == socket.EAI_NODATA: if e.errno == socket.EAI_NODATA:
self.skipTest('internet access required for this test') self.skipTest('internet access required for this test')
# these should all be successful # these should all be successful
socket.gethostbyname('испытание.python.org') domain = 'испытание.pythontest.net'
socket.gethostbyname_ex('испытание.python.org') socket.gethostbyname(domain)
socket.getaddrinfo('испытание.python.org',0,socket.AF_UNSPEC,socket.SOCK_STREAM) socket.gethostbyname_ex(domain)
socket.getaddrinfo(domain,0,socket.AF_UNSPEC,socket.SOCK_STREAM)
# this may not work if the forward lookup choses the IPv6 address, as that doesn't # this may not work if the forward lookup choses the IPv6 address, as that doesn't
# have a reverse entry yet # have a reverse entry yet
# socket.gethostbyaddr('испытание.python.org') # socket.gethostbyaddr('испытание.python.org')
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment