Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.8/site-packages/w3lib/_url.py: 100%
2 statements
« prev ^ index » next coverage.py v7.2.7, created at 2023-06-07 07:14 +0000
« prev ^ index » next coverage.py v7.2.7, created at 2023-06-07 07:14 +0000
1# https://url.spec.whatwg.org/
3# https://url.spec.whatwg.org/commit-snapshots/a46cb9188a48c2c9d80ba32a9b1891652d6b4900/#default-port
4_DEFAULT_PORTS = {
5 "ftp": 21,
6 "file": None,
7 "http": 80,
8 "https": 443,
9 "ws": 80,
10 "wss": 443,
11}
12_SPECIAL_SCHEMES = set(_DEFAULT_PORTS.keys())