(self, bytes, invalid_url)
| 772 | 'http://[::1/foo/bad]/bad', |
| 773 | 'http://[::ffff:12.34.56.78']) |
| 774 | def test_RFC2732_invalid(self, bytes, invalid_url): |
| 775 | if bytes: |
| 776 | invalid_url = str_encode(invalid_url) |
| 777 | self.assertRaises(ValueError, urllib.parse.urlparse, invalid_url) |
| 778 | |
| 779 | @support.subTests('bytes', (False, True)) |
| 780 | @support.subTests('url,defrag,frag', [ |
nothing calls this directly
no test coverage detected