summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2010-08-22 19:33:47 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2010-08-22 19:33:47 (GMT)
commitfc0275a14a1c1c3df276bf9161cfab9da8026257 (patch)
treef43618f0006ea72c082830d0d4187dedc491123a /Misc
parentd41a37a148fbba4c3356a8727b579389af5038d9 (diff)
downloadcpython-fc0275a14a1c1c3df276bf9161cfab9da8026257.zip
cpython-fc0275a14a1c1c3df276bf9161cfab9da8026257.tar.gz
cpython-fc0275a14a1c1c3df276bf9161cfab9da8026257.tar.bz2
Issue #1027206: Support IDNA in gethostbyname, gethostbyname_ex and
getaddrinfo. Patch by David Watson.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 790143d..c74c237 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -66,6 +66,8 @@ Core and Builtins
Extensions
----------
+- Issue #1027206: Support IDNA in gethostbyname, gethostbyname_ex and getaddrinfo.
+
- Issue #9214: Set operations on a KeysView or ItemsView in collections
now correctly return a set. (Patch by Eli Bendersky.)