Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.11/site-packages/w3lib/_url.py: 67%

Shortcuts on this page

r m x   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

3 statements  

1# https://url.spec.whatwg.org/ 

2 

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())