matteo-the-prestige/matteo_env/Lib/site-packages/yarl/_quoting_c.pyi

17 lines
447 B
Python
Raw Normal View History

2020-12-20 00:08:09 +00:00
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]: ...