Mention that gethostbyaddr now also supports IDNA.

This commit is contained in:
Martin v. Löwis 2010-08-22 19:38:04 +00:00
parent fc0275a14a
commit 56773cf0d2
2 changed files with 3 additions and 1 deletions

View file

@ -642,6 +642,7 @@ class GeneralModuleTests(unittest.TestCase):
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):