bpo-37256: Wording in Request class docs (#14792)
authorNgalim Siregar <ngalim.siregar@gmail.com>
Wed, 14 Aug 2019 01:10:58 +0000 (08:10 +0700)
committerSenthil Kumaran <senthil@uthcode.com>
Wed, 14 Aug 2019 01:10:58 +0000 (18:10 -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>
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`