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