blob: 9a6b79adf9106814e32a57cfb51447baba555e13 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
class _Quoter:
def __init__(
self,
*,
safe: str = ...,
protected: str = ...,
qs: bool = ...,
requote: bool = ...
) -> None: ...
def __call__(self, val: str = ...) -> str: ...
class _Unquoter:
def __init__(
self, *, ignore: str = ..., unsafe: str = ..., qs: bool = ...
) -> None: ...
def __call__(self, val: str = ...) -> str: ...
|