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