[Python-checkins] r84262 - in python/branches/py3k: Lib/test/test_socket.py Misc/NEWS
martin.v.loewis
python-checkins at python.org
Sun Aug 22 21:38:04 CEST 2010
Author: martin.v.loewis
Date: Sun Aug 22 21:38:04 2010
New Revision: 84262
Log:
Mention that gethostbyaddr now also supports IDNA.
Modified:
python/branches/py3k/Lib/test/test_socket.py
python/branches/py3k/Misc/NEWS
Modified: python/branches/py3k/Lib/test/test_socket.py
==============================================================================
--- python/branches/py3k/Lib/test/test_socket.py (original)
+++ python/branches/py3k/Lib/test/test_socket.py Sun Aug 22 21:38:04 2010
@@ -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):
Modified: python/branches/py3k/Misc/NEWS
==============================================================================
--- python/branches/py3k/Misc/NEWS (original)
+++ python/branches/py3k/Misc/NEWS Sun Aug 22 21:38:04 2010
@@ -66,7 +66,8 @@
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.)
More information about the Python-checkins
mailing list