diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2017-06-20 15:06:35 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-20 15:06:35 (GMT) |
commit | a1115e1a0454f0548f96cace6ee97b286dfa1c0d (patch) | |
tree | 6eabf055874cfa0b85cc44f128aedd753b9a0e51 /Misc/NEWS | |
parent | 82acabd3c52508d9e3f83a41fe7c684619cbbe7b (diff) | |
download | cpython-a1115e1a0454f0548f96cace6ee97b286dfa1c0d.zip cpython-a1115e1a0454f0548f96cace6ee97b286dfa1c0d.tar.gz cpython-a1115e1a0454f0548f96cace6ee97b286dfa1c0d.tar.bz2 |
[3.6] bpo-29755: Fixed the lgettext() family of functions in the gettext module. (GH-2266) (#2297)
They now always return bytes.
Updated the gettext documentation..
(cherry picked from commit 26cb4657bcc9a7adffa95798ececb588dddfeadb)
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -13,6 +13,9 @@ Core and Builtins Library ------- +- bpo-29755: Fixed the lgettext() family of functions in the gettext module. + They now always return bytes. + - [Security] bpo-30500: Fix urllib.parse.splithost() to correctly parse fragments. For example, ``splithost('//127.0.0.1#@evil.com/')`` now correctly returns the ``127.0.0.1`` host, instead of treating ``@evil.com`` |