From aaff561ef6ab4a6baa427ab94d66874e97a003fa Mon Sep 17 00:00:00 2001 From: Vasily Zakharov Date: Mon, 30 Sep 2019 19:57:14 +0300 Subject: [PATCH] Added stub for urllib.request.proxy_bypass() (#3283) --- stdlib/3/urllib/request.pyi | 1 + 1 file changed, 1 insertion(+) diff --git a/stdlib/3/urllib/request.pyi b/stdlib/3/urllib/request.pyi index b043a115e..63152d445 100644 --- a/stdlib/3/urllib/request.pyi +++ b/stdlib/3/urllib/request.pyi @@ -34,6 +34,7 @@ def pathname2url(path: str) -> str: ... def getproxies() -> Dict[str, str]: ... def parse_http_list(s: str) -> List[str]: ... def parse_keqv_list(l: List[str]) -> Dict[str, str]: ... +def proxy_bypass(host: str) -> Any: ... # Undocumented class Request: @property