From: Victor Stinner Date: Tue, 20 Jun 2017 14:09:06 +0000 (+0200) Subject: bpo-30500: Fix the NEWS entry (#2295) X-Git-Tag: v3.5.4rc1~58 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=410860662f53945cddf5886801c5a88a84801fec;p=python bpo-30500: Fix the NEWS entry (#2295) splithost() expects an URL starting with "//" not with "http://". --- diff --git a/Misc/NEWS b/Misc/NEWS index f839ad4128..9278c69c2e 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -60,7 +60,7 @@ Library ------- - [Security] bpo-30500: Fix urllib.parse.splithost() to correctly parse - fragments. For example, ``splithost('http://127.0.0.1#@evil.com/')`` now + fragments. For example, ``splithost('//127.0.0.1#@evil.com/')`` now correctly returns the ``127.0.0.1`` host, instead of treating ``@evil.com`` as the host in an authentification (``login@host``).