(self)
| 1934 | err.close() |
| 1935 | |
| 1936 | def test_gh_98778(self): |
| 1937 | x = urllib.error.HTTPError("url", 405, "METHOD NOT ALLOWED", None, None) |
| 1938 | self.assertEqual(getattr(x, "__notes__", ()), ()) |
| 1939 | self.assertIsInstance(x.fp.read(), bytes) |
| 1940 | x.close() |
| 1941 | |
| 1942 | def test_parse_proxy(self): |
| 1943 | parse_proxy_test_cases = [ |
nothing calls this directly
no test coverage detected