Verify that a URL is downloadable.
(url)
| 232 | |
| 233 | |
| 234 | def verify_url(url): |
| 235 | """Verify that a URL is downloadable.""" |
| 236 | r = http.request("HEAD", url) |
| 237 | return r.status == 200 |
| 238 | |
| 239 | |
| 240 | def find_matching_edge_version(platform): |
no test coverage detected