]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-37256: Wording in Request class docs (GH-14792)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Wed, 14 Aug 2019 13:55:53 +0000 (06:55 -0700)
committerGitHub <noreply@github.com>
Wed, 14 Aug 2019 13:55:53 +0000 (06:55 -0700)
* bpo-37256: Wording in Request class docs

* ðŸ“œðŸ¤– Added by blurb_it.

* Update Misc/NEWS.d/next/Documentation/2019-07-16-14-48-12.bpo-37256.qJTrBb.rst

Co-Authored-By: Kyle Stanley <aeros167@gmail.com>
(cherry picked from commit 38c7199beb30ae9a5005c0f0d9df9fae0da3680a)

Co-authored-by: Ngalim Siregar <ngalim.siregar@gmail.com>
Doc/library/urllib.request.rst
Misc/NEWS.d/next/Documentation/2019-07-16-14-48-12.bpo-37256.qJTrBb.rst [new file with mode: 0644]

index 1bc81e05b38b136ff843cba0e034f9ffd12f2730..5d8c0ec4303cd672a8f681012f554cbbec6a40ce 100644 (file)
@@ -220,7 +220,7 @@ The following classes are provided:
    is not None, ``Content-Type: application/x-www-form-urlencoded`` will
    be added as a default.
 
-   The final two arguments are only of interest for correct handling
+   The next two arguments are only of interest for correct handling
    of third-party HTTP cookies:
 
    *origin_req_host* should be the request-host of the origin
diff --git a/Misc/NEWS.d/next/Documentation/2019-07-16-14-48-12.bpo-37256.qJTrBb.rst b/Misc/NEWS.d/next/Documentation/2019-07-16-14-48-12.bpo-37256.qJTrBb.rst
new file mode 100644 (file)
index 0000000..480d7c8
--- /dev/null
@@ -0,0 +1 @@
+Fix wording of arguments for :class:`Request` in :mod:`urllib.request`