Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.8/site-packages/mdurl/_url.py: 100%
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
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
1from __future__ import annotations
3from typing import NamedTuple
6class URL(NamedTuple):
7 protocol: str | None
8 slashes: bool
9 auth: str | None
10 port: str | None
11 hostname: str | None
12 hash: str | None # noqa: A003
13 search: str | None
14 pathname: str | None