summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2016-01-28 14:41:01 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2016-01-28 14:41:01 (GMT)
commit7240030c52b5b738830c538bf849da8241c569d0 (patch)
tree4a547608abf911a0850ad43a4865a57a89a00241 /Misc
parent806cb0f2b69bc6663e2c248afeadcea54c99d377 (diff)
downloadcpython-7240030c52b5b738830c538bf849da8241c569d0.zip
cpython-7240030c52b5b738830c538bf849da8241c569d0.tar.gz
cpython-7240030c52b5b738830c538bf849da8241c569d0.tar.bz2
Windows: Decode hostname from ANSI code page
Issue #26227: On Windows, getnameinfo(), gethostbyaddr() and gethostbyname_ex() functions of the socket module now decode the hostname from the ANSI code page rather than UTF-8.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 5e461f9..d6f81db 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -66,6 +66,10 @@ Core and Builtins
Library
-------
+- Issue #26227: On Windows, getnameinfo(), gethostbyaddr() and
+ gethostbyname_ex() functions of the socket module now decode the hostname
+ from the ANSI code page rather than UTF-8.
+
- Issue #26147: xmlrpc now works with strings not encodable with used
non-UTF-8 encoding.