diff options
author | Steve Dower <steve.dower@microsoft.com> | 2019-03-07 16:02:26 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-07 16:02:26 (GMT) |
commit | 16e6f7dee7f02bb81aa6b385b982dcdda5b99286 (patch) | |
tree | d9d7e262a37abec0b9f756f23b6aa7a4295405b6 /Misc | |
parent | 1f58f4fa6a0e3c60cee8df4a35c8dcf3903acde8 (diff) | |
download | cpython-16e6f7dee7f02bb81aa6b385b982dcdda5b99286.zip cpython-16e6f7dee7f02bb81aa6b385b982dcdda5b99286.tar.gz cpython-16e6f7dee7f02bb81aa6b385b982dcdda5b99286.tar.bz2 |
bpo-36216: Add check for characters in netloc that normalize to separators (GH-12201)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Security/2019-03-06-09-38-40.bpo-36216.6q1m4a.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Security/2019-03-06-09-38-40.bpo-36216.6q1m4a.rst b/Misc/NEWS.d/next/Security/2019-03-06-09-38-40.bpo-36216.6q1m4a.rst new file mode 100644 index 0000000..5546394 --- /dev/null +++ b/Misc/NEWS.d/next/Security/2019-03-06-09-38-40.bpo-36216.6q1m4a.rst @@ -0,0 +1,3 @@ +Changes urlsplit() to raise ValueError when the URL contains characters that +decompose under IDNA encoding (NFKC-normalization) into characters that +affect how the URL is parsed. |