summaryrefslogtreecommitdiffstats
path: root/Lib/urllib
diff options
context:
space:
mode:
authorƁukasz Langa <lukasz@langa.pl>2021-10-06 15:28:16 (GMT)
committerGitHub <noreply@github.com>2021-10-06 15:28:16 (GMT)
commitf528045f695f7483d955a1eae4c1df68b1b4cacd (patch)
tree0aa89e755f8672aca1a635762dbaf0fef795a072 /Lib/urllib
parent61892c04764e1f3a659bbd09e6373687a27d36e2 (diff)
downloadcpython-f528045f695f7483d955a1eae4c1df68b1b4cacd.zip
cpython-f528045f695f7483d955a1eae4c1df68b1b4cacd.tar.gz
cpython-f528045f695f7483d955a1eae4c1df68b1b4cacd.tar.bz2
bpo-40321: Add missing test, slightly expand documentation (GH-28760)
Diffstat (limited to 'Lib/urllib')
-rw-r--r--Lib/urllib/request.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/urllib/request.py b/Lib/urllib/request.py
index 3ba6d92..fd6fc36 100644
--- a/Lib/urllib/request.py
+++ b/Lib/urllib/request.py
@@ -11,7 +11,7 @@ option. The OpenerDirector is a composite object that invokes the
Handlers needed to open the requested URL. For example, the
HTTPHandler performs HTTP GET and POST requests and deals with
non-error returns. The HTTPRedirectHandler automatically deals with
-HTTP 301, 302, 303, 307 and 308 redirect errors, and the
+HTTP 301, 302, 303, 307, and 308 redirect errors, and the
HTTPDigestAuthHandler deals with digest authentication.
urlopen(url, data=None) -- Basic usage is the same as original