Files
Info_edupage/.venv/lib/python3.9/site-packages/yarl/_quoting_c.pyi
Untriex Programming 6544d16770 Revert "Delete .venv directory"
This reverts commit 5a2693bd9f.
2021-08-31 22:26:50 +02:00

17 lines
447 B
Python

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]: ...