From 89e5d9607c4b8b2ee668d13ec1775ea3faf6d243 Mon Sep 17 00:00:00 2001 From: Salvo 'LtWorf' Tomaselli Date: Wed, 7 Mar 2018 06:36:33 +0100 Subject: [PATCH] Add missing headers field (#1946) --- 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 8383642e8..23e6e918c 100644 --- a/stdlib/3/urllib/request.pyi +++ b/stdlib/3/urllib/request.pyi @@ -47,6 +47,7 @@ class Request: origin_req_host = ... # type: str selector = ... # type: str data = ... # type: Optional[bytes] + headers = ... # type: Dict[str, str] unverifiable = ... # type: bool method = ... # type: Optional[str] def __init__(self, url: str, data: Optional[bytes] = ...,