From: Victor Stinner Date: Tue, 20 Jun 2017 14:09:22 +0000 (+0200) Subject: bpo-30500: Fix the NEWS entry (#2293) X-Git-Tag: v3.7.0a1~561 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8457706ee308a621103e9b9c760ca9da3cc4e7c0;p=thirdparty%2FPython%2Fcpython.git bpo-30500: Fix the NEWS entry (#2293) splithost() expects an URL starting with "//" not with "http://". --- diff --git a/Misc/NEWS b/Misc/NEWS index 6469986b48ce..3af74ff31b35 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -369,7 +369,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``).