diff options
author | Senthil Kumaran <senthil@uthcode.com> | 2012-05-24 21:56:17 +0800 |
---|---|---|
committer | Senthil Kumaran <senthil@uthcode.com> | 2012-05-24 21:56:17 +0800 |
commit | 2fc5a5080923f243a78b13cca0fd09f8db26eff6 (patch) | |
tree | 19f2eff518b2d2018aa0add9292cc39e2a5d60cc /Lib/test/test_urlparse.py | |
parent | 346c5de08e92001f0b26b4d07d8f2a22a21d2f1e (diff) | |
download | cpython-git-2fc5a5080923f243a78b13cca0fd09f8db26eff6.tar.gz |
Issue #14036: return None when port in urlparse cross 65535
Diffstat (limited to 'Lib/test/test_urlparse.py')
-rwxr-xr-x | Lib/test/test_urlparse.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Lib/test/test_urlparse.py b/Lib/test/test_urlparse.py index 73150cffa6..e9adaefbd5 100755 --- a/Lib/test/test_urlparse.py +++ b/Lib/test/test_urlparse.py @@ -524,6 +524,11 @@ class UrlParseTestCase(unittest.TestCase): self.assertEqual(p.port, 80) self.assertEqual(p.geturl(), url) + # Verify an illegal port is returned as None + url = b"HTTP://WWW.PYTHON.ORG:65536/doc/#frag" + p = urllib.parse.urlsplit(url) + self.assertEqual(p.port, None) + def test_attributes_bad_port(self): """Check handling of non-integer ports.""" p = urllib.parse.urlsplit("http://www.example.net:foo") |