From 462f71a212c055d02c2b058af3a3d4c8bb97a09b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Freitag?= Date: Sat, 21 Dec 2019 20:48:17 +0000 Subject: [PATCH] Remove unused type _HTTPResponse (#3531) Unused since 8e7c32846fc2b07eff10296f815f053a5f6daaa5. --- stdlib/3/urllib/request.pyi | 4 ---- 1 file changed, 4 deletions(-) diff --git a/stdlib/3/urllib/request.pyi b/stdlib/3/urllib/request.pyi index 7dd954d4b..6cddf60f4 100644 --- a/stdlib/3/urllib/request.pyi +++ b/stdlib/3/urllib/request.pyi @@ -15,10 +15,6 @@ import os _T = TypeVar('_T') _UrlopenRet = Any -class _HTTPResponse(HTTPResponse): - url: str - msg: str # type: ignore - def urlopen( url: Union[str, Request], data: Optional[bytes] = ..., timeout: Optional[float] = ..., *, cafile: Optional[str] = ...,