You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
447 B
16 lines
447 B
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]: ...
|
|
|