diff --git a/stdlib/3/urllib/parse.pyi b/stdlib/3/urllib/parse.pyi index 10dae46fc..1a453dcc9 100644 --- a/stdlib/3/urllib/parse.pyi +++ b/stdlib/3/urllib/parse.pyi @@ -19,6 +19,14 @@ __all__ = ( 'unquote_to_bytes' ) +uses_relative = [] # type: List[str] +uses_netloc = [] # type: List[str] +uses_params = [] # type: List[str] +non_hierarchical = [] # type: List[str] +uses_query = [] # type: List[str] +uses_fragment = [] # type: List[str] +scheme_chars = ... # type: str +MAX_CACHE_SIZE = 0 class _ResultMixinBase(Generic[AnyStr]): def geturl(self) -> AnyStr: ... @@ -90,6 +98,8 @@ def unquote(string: str, encoding: str = ..., errors: str = ...) -> str: ... def unquote_to_bytes(string: AnyStr) -> bytes: ... +def unquote_plus(string: str, encoding: str = ..., errors: str = ...) -> str: ... + @overload def urldefrag(url: str) -> DefragResult: ... @overload