summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2017-06-20 14:09:06 (GMT)
committerGitHub <noreply@github.com>2017-06-20 14:09:06 (GMT)
commit82acabd3c52508d9e3f83a41fe7c684619cbbe7b (patch)
treeb7eda4b612053123b12b8a311fe3955ef61763b3 /Misc/NEWS
parent536c1f1246f4faa302f9f5613fc3444e7ae09b4a (diff)
downloadcpython-82acabd3c52508d9e3f83a41fe7c684619cbbe7b.zip
cpython-82acabd3c52508d9e3f83a41fe7c684619cbbe7b.tar.gz
cpython-82acabd3c52508d9e3f83a41fe7c684619cbbe7b.tar.bz2
bpo-30500: Fix the NEWS entry (#2296)
splithost() expects an URL starting with "//" not with "http://".
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS2
1 files changed, 1 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index beb63bd..51edb1d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -14,7 +14,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``).