]> granicus.if.org Git - python/commitdiff
bpo-37256: Wording in Request class docs (GH-14792)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Fri, 16 Aug 2019 08:27:35 +0000 (01:27 -0700)
committerGitHub <noreply@github.com>
Fri, 16 Aug 2019 08:27:35 +0000 (01:27 -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 3b7508966691499c3d709ac162c249a962811398..448bc67854704a24d1f6ae7f3f0b0b22f7067921 100644 (file)
@@ -227,7 +227,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`