diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2013-06-03 20:07:27 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2013-06-03 20:07:27 (GMT) |
commit | a534fc4b3bd4b731be9304be626bc161f53d7bfb (patch) | |
tree | 503ac32ab7c4de6f54c73597d04f97b82930397e /Misc | |
parent | caa00fec19705c656497658c6ff1b1fff62a4484 (diff) | |
download | cpython-a534fc4b3bd4b731be9304be626bc161f53d7bfb.zip cpython-a534fc4b3bd4b731be9304be626bc161f53d7bfb.tar.gz cpython-a534fc4b3bd4b731be9304be626bc161f53d7bfb.tar.bz2 |
Close #18109: os.uname() now decodes fields from the locale encoding, and
socket.gethostname() now decodes the hostname from the locale encoding, instead
of using the UTF-8 encoding in strict mode.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -24,6 +24,10 @@ Core and Builtins Library ------- +- Issue #18109: os.uname() now decodes fields from the locale encoding, and + socket.gethostname() now decodes the hostname from the locale encoding, + instead of using the UTF-8 encoding in strict mode. + - Issue #17403: urllib.parse.robotparser normalizes the urls before adding to ruleline. This helps in handling certain types invalid urls in a conservative manner. @@ -69,7 +73,7 @@ IDLE - Issue #15392: Create a unittest framework for IDLE. Initial patch by Rajagopalasarma Jayakrishnan. - + - Issue #14146: Highlight source line while debugging on Windows. - Issue #17532: Always include Options menu for IDLE on OS X. |