From 1fcb61333882accede04664f541f13c2e33dae5c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A1szl=C3=B3=20K=C3=A1rolyi?= Date: Fri, 19 Nov 2021 13:16:48 +0000 Subject: [PATCH] Add HTTPResponse.fp as io.BufferedReader (#6324) See https://github.com/python/cpython/blob/da20d7401de97b425897d3069f71f77b039eb16f/Lib/http/client.py#L256 --- stdlib/http/client.pyi | 1 + 1 file changed, 1 insertion(+) diff --git a/stdlib/http/client.pyi b/stdlib/http/client.pyi index f27cb0b60..c450db587 100644 --- a/stdlib/http/client.pyi +++ b/stdlib/http/client.pyi @@ -83,6 +83,7 @@ class HTTPResponse(io.BufferedIOBase, BinaryIO): headers: HTTPMessage version: int debuglevel: int + fp: io.BufferedReader closed: bool status: int reason: str