(self)
| 340 | parse_url("[::1") |
| 341 | |
| 342 | def test_parse_url_negative_port(self) -> None: |
| 343 | with pytest.raises(LocationParseError): |
| 344 | parse_url("https://www.google.com:-80/") |
| 345 | |
| 346 | def test_parse_url_remove_leading_zeros(self) -> None: |
| 347 | url = parse_url("https://example.com:0000000000080") |
nothing calls this directly
no test coverage detected