mirror of
https://github.com/python/cpython.git
synced 2025-07-12 13:55:34 +00:00
bpo-36742: Fixes handling of pre-normalization characters in urlsplit() (GH-13017)
This commit is contained in:
parent
b84cb70880
commit
d537ab0ff9
3 changed files with 14 additions and 4 deletions
|
@ -1011,6 +1011,12 @@ class UrlParseTestCase(unittest.TestCase):
|
|||
self.assertIn('\u2100', denorm_chars)
|
||||
self.assertIn('\uFF03', denorm_chars)
|
||||
|
||||
# bpo-36742: Verify port separators are ignored when they
|
||||
# existed prior to decomposition
|
||||
urllib.parse.urlsplit('http://\u30d5\u309a:80')
|
||||
with self.assertRaises(ValueError):
|
||||
urllib.parse.urlsplit('http://\u30d5\u309a\ufe1380')
|
||||
|
||||
for scheme in ["http", "https", "ftp"]:
|
||||
for c in denorm_chars:
|
||||
url = "{}://netloc{}false.netloc/path".format(scheme, c)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue