From 1b3076180238f45d68a8fe371bf6a60658524da2 Mon Sep 17 00:00:00 2001 From: Roy Williams Date: Fri, 9 Sep 2016 16:12:30 -0700 Subject: [PATCH] Small changes by @rowilla to collections.pyi and urllib/requests.pyi. (Extracted from PR #530.) --- stdlib/3/collections/__init__.pyi | 1 + stdlib/3/urllib/request.pyi | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/stdlib/3/collections/__init__.pyi b/stdlib/3/collections/__init__.pyi index 29b232ee8..f9bd4023a 100644 --- a/stdlib/3/collections/__init__.pyi +++ b/stdlib/3/collections/__init__.pyi @@ -17,6 +17,7 @@ from typing import ( MutableMapping as MutableMapping, Sequence as Sequence, MutableSequence as MutableSequence, + MutableSet as MutableSet, AbstractSet as Set, ) diff --git a/stdlib/3/urllib/request.pyi b/stdlib/3/urllib/request.pyi index 08262307c..4efa4aa26 100644 --- a/stdlib/3/urllib/request.pyi +++ b/stdlib/3/urllib/request.pyi @@ -27,7 +27,7 @@ def build_opener(*handlers: Union[BaseHandler, Callable[[], BaseHandler]]) \ def url2pathname(path: str) -> str: ... def pathname2url(path: str) -> str: ... def getproxies() -> Dict[str, str]: ... - +def parse_http_list(s: str) -> List[str]: ... class Request: if sys.version_info >= (3, 4):