mirror of
https://github.com/python/cpython.git
synced 2026-01-06 15:32:22 +00:00
Mention that gethostbyaddr now also supports IDNA.
This commit is contained in:
parent
fc0275a14a
commit
56773cf0d2
2 changed files with 3 additions and 1 deletions
|
|
@ -642,6 +642,7 @@ def test_idna(self):
|
|||
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.)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue