]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-103112: Add http.client.HTTPResponse.read docstring and fix pydoc output (#103113)
authorBernhard Wagner <github.comNotification20120125@xmlizer.net>
Wed, 29 Mar 2023 19:21:56 +0000 (21:21 +0200)
committerGitHub <noreply@github.com>
Wed, 29 Mar 2023 19:21:56 +0000 (15:21 -0400)
Co-authored-by: blurb-it[bot] <43283697+blurb-it[bot]@users.noreply.github.com>
Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
Co-authored-by: Éric <merwok@netwok.org>
Lib/http/client.py
Misc/NEWS.d/next/Documentation/2023-03-29-14-51-39.gh-issue-103112.XgGSEO.rst [new file with mode: 0644]

index 15c5cf634cf50895c8c71482e1f175d0a6902363..bd55e7d239af0c6aacac14890a43686487fcfed7 100644 (file)
@@ -448,6 +448,7 @@ class HTTPResponse(io.BufferedIOBase):
         return self.fp is None
 
     def read(self, amt=None):
+        """Read and return the response body, or up to the next amt bytes."""
         if self.fp is None:
             return b""
 
diff --git a/Misc/NEWS.d/next/Documentation/2023-03-29-14-51-39.gh-issue-103112.XgGSEO.rst b/Misc/NEWS.d/next/Documentation/2023-03-29-14-51-39.gh-issue-103112.XgGSEO.rst
new file mode 100644 (file)
index 0000000..babc815
--- /dev/null
@@ -0,0 +1 @@
+Add docstring to :meth:`http.client.HTTPResponse.read` to fix ``pydoc`` output.