From 09718c6a03061f0ede576b982c9c1b9c3cc30568 Mon Sep 17 00:00:00 2001 From: Jaromir Latal Date: Wed, 22 Jul 2020 16:46:51 +0100 Subject: [PATCH] [requests] Add _content to Response (#4353) Co-authored-by: Jaromir Latal --- third_party/2and3/requests/models.pyi | 1 + 1 file changed, 1 insertion(+) diff --git a/third_party/2and3/requests/models.pyi b/third_party/2and3/requests/models.pyi index 81788fde6..a230452f4 100644 --- a/third_party/2and3/requests/models.pyi +++ b/third_party/2and3/requests/models.pyi @@ -91,6 +91,7 @@ class PreparedRequest(RequestEncodingMixin, RequestHooksMixin): class Response: __attrs__: Any + _content: Optional[bytes] # undocumented status_code: int headers: CaseInsensitiveDict[str] raw: Any