diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2017-06-20 14:13:29 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-20 14:13:29 (GMT) |
commit | 26cb4657bcc9a7adffa95798ececb588dddfeadb (patch) | |
tree | e1ebdeb6ee1f428a739a50933ffef3e6ee141aa8 /Misc/NEWS | |
parent | 8457706ee308a621103e9b9c760ca9da3cc4e7c0 (diff) | |
download | cpython-26cb4657bcc9a7adffa95798ececb588dddfeadb.zip cpython-26cb4657bcc9a7adffa95798ececb588dddfeadb.tar.gz cpython-26cb4657bcc9a7adffa95798ececb588dddfeadb.tar.bz2 |
bpo-29755: Fixed the lgettext() family of functions in the gettext module. (#2266)
They now always return bytes.
Updated the gettext documentation.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -368,6 +368,9 @@ Extension Modules 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`` |