diff options
author | Ćukasz Langa <lukasz@langa.pl> | 2022-07-05 12:30:37 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-05 12:30:37 (GMT) |
commit | 6e47020d31c837f494ee500efa9b557bb83b87d7 (patch) | |
tree | 6e9b200e9e4c85365c93e836d4706c74b3b324fb /Doc/library/urllib.request.rst | |
parent | 3472f3b6e50683a76a6a5ae745b14f4588e632aa (diff) | |
download | cpython-6e47020d31c837f494ee500efa9b557bb83b87d7.zip cpython-6e47020d31c837f494ee500efa9b557bb83b87d7.tar.gz cpython-6e47020d31c837f494ee500efa9b557bb83b87d7.tar.bz2 |
[3.10] Docs: remove redundant "adverb-adjective" hyphens from compound modifiers (GH-94551) (GH-94558)
Discussion: https://discuss.python.org/t/slight-grammar-fix-throughout-adverbs-dont-need-hyphen/17021
(cherry picked from commit 3440d197a55800ecceea3e115e44b4262411359c)
Co-authored-by: Ned Batchelder <ned@nedbatchelder.com>
Diffstat (limited to 'Doc/library/urllib.request.rst')
-rw-r--r-- | Doc/library/urllib.request.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/urllib.request.rst b/Doc/library/urllib.request.rst index 63248b3..9c2c37a 100644 --- a/Doc/library/urllib.request.rst +++ b/Doc/library/urllib.request.rst @@ -1269,7 +1269,7 @@ involved. For example, the :envvar:`http_proxy` environment variable is read to obtain the HTTP proxy's URL. This example replaces the default :class:`ProxyHandler` with one that uses -programmatically-supplied proxy URLs, and adds proxy authorization support with +programmatically supplied proxy URLs, and adds proxy authorization support with :class:`ProxyBasicAuthHandler`. :: proxy_handler = urllib.request.ProxyHandler({'http': 'http://www.example.com:3128/'}) |