Mention that gethostbyaddr now also supports IDNA.
diff --git a/Lib/test/test_socket.py b/Lib/test/test_socket.py
index e0912d8..1a85c0e 100644
--- a/Lib/test/test_socket.py
+++ b/Lib/test/test_socket.py
@@ -642,6 +642,7 @@
         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):