diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2010-08-22 19:38:04 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2010-08-22 19:38:04 (GMT) |
commit | 56773cf0d266a5bf33fd5b3ffa3741a2e117c1a9 (patch) | |
tree | 8fc9381d69b885451634afbc5ade5fad1ceb3c42 | |
parent | fc0275a14a1c1c3df276bf9161cfab9da8026257 (diff) | |
download | cpython-56773cf0d266a5bf33fd5b3ffa3741a2e117c1a9.zip cpython-56773cf0d266a5bf33fd5b3ffa3741a2e117c1a9.tar.gz cpython-56773cf0d266a5bf33fd5b3ffa3741a2e117c1a9.tar.bz2 |
Mention that gethostbyaddr now also supports IDNA.
-rw-r--r-- | Lib/test/test_socket.py | 1 | ||||
-rw-r--r-- | Misc/NEWS | 3 |
2 files changed, 3 insertions, 1 deletions
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 @@ 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): @@ -66,7 +66,8 @@ Core and Builtins 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.) |