socket.gethostbyname('испытание.python.org')
socket.gethostbyname_ex('испытание.python.org')
socket.getaddrinfo('испытание.python.org',0)
+ socket.gethostbyaddr('испытание.python.org')
@unittest.skipUnless(thread, 'Threading required for this test.')
class BasicTCPTest(SocketConnectedTest):
Extensions
----------
-- Issue #1027206: Support IDNA in gethostbyname, gethostbyname_ex and getaddrinfo.
+- Issue #1027206: Support IDNA in gethostbyname, gethostbyname_ex,
+ getaddrinfo and gethostbyaddr.
- Issue #9214: Set operations on a KeysView or ItemsView in collections
now correctly return a set. (Patch by Eli Bendersky.)