(host)
| 749 | |
| 750 | |
| 751 | def parse_host(host): |
| 752 | url = urllib.parse.urlsplit(host) |
| 753 | if not url.scheme: |
| 754 | url = urllib.parse.urlsplit("https://" + host) |
| 755 | |
| 756 | return url.scheme, url.netloc, url.path |
| 757 | |
| 758 | |
| 759 | def generate_upload_url(parser, options, zip_filename): |
no outgoing calls
no test coverage detected