1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
from builtins import bytes as bytes, str as str
from collections import OrderedDict as OrderedDict
from typing import Literal
from typing_extensions import TypeAlias
from urllib.parse import (
quote as quote,
quote_plus as quote_plus,
unquote as unquote,
unquote_plus as unquote_plus,
urldefrag as urldefrag,
urlencode as urlencode,
urljoin as urljoin,
urlparse as urlparse,
urlsplit as urlsplit,
urlunparse as urlunparse,
)
from urllib.request import getproxies as getproxies, parse_http_list as parse_http_list, proxy_bypass as proxy_bypass
is_py2: Literal[False]
is_py3: Literal[True]
has_simplejson: bool
builtin_str: TypeAlias = str # noqa: Y042
basestring: tuple[type, ...]
numeric_types: tuple[type, ...]
integer_types: tuple[type, ...]
|