summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2023-02-10 22:26:34 (GMT)
committerGitHub <noreply@github.com>2023-02-10 22:26:34 (GMT)
commit2e7ff1fcf67dcbcf872c699d95cc8b01771c0698 (patch)
tree3bb4ba301f6cca2a3c4b427d817fde99d10ec2d7 /Doc
parent207fa11febbe0438d9c12be5353003d3c19f60c3 (diff)
downloadcpython-2e7ff1fcf67dcbcf872c699d95cc8b01771c0698.zip
cpython-2e7ff1fcf67dcbcf872c699d95cc8b01771c0698.tar.gz
cpython-2e7ff1fcf67dcbcf872c699d95cc8b01771c0698.tar.bz2
Docs: Fix getstatus() -> getcode() typos (GH-101296)
(cherry picked from commit 61f2be08661949e2f6dfc94143436297e60d47de) Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com>
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/http.client.rst2
-rw-r--r--Doc/library/urllib.request.rst2
2 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/http.client.rst b/Doc/library/http.client.rst
index dd7a0c4..00d76cc 100644
--- a/Doc/library/http.client.rst
+++ b/Doc/library/http.client.rst
@@ -528,7 +528,7 @@ statement.
.. deprecated:: 3.9
Deprecated in favor of :attr:`~HTTPResponse.headers`.
-.. method:: HTTPResponse.getstatus()
+.. method:: HTTPResponse.getcode()
.. deprecated:: 3.9
Deprecated in favor of :attr:`~HTTPResponse.status`.
diff --git a/Doc/library/urllib.request.rst b/Doc/library/urllib.request.rst
index 9c2c37a..7659d80 100644
--- a/Doc/library/urllib.request.rst
+++ b/Doc/library/urllib.request.rst
@@ -1619,7 +1619,7 @@ The typical response object is a :class:`urllib.response.addinfourl` instance:
.. deprecated:: 3.9
Deprecated in favor of :attr:`~addinfourl.status`.
- .. method:: getstatus()
+ .. method:: getcode()
.. deprecated:: 3.9
Deprecated in favor of :attr:`~addinfourl.status`.