From 38c7199beb30ae9a5005c0f0d9df9fae0da3680a Mon Sep 17 00:00:00 2001 From: Ngalim Siregar Date: Wed, 14 Aug 2019 08:10:58 +0700 Subject: [PATCH] bpo-37256: Wording in Request class docs (#14792) MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit * 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 --- Doc/library/urllib.request.rst | 2 +- .../next/Documentation/2019-07-16-14-48-12.bpo-37256.qJTrBb.rst | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 Misc/NEWS.d/next/Documentation/2019-07-16-14-48-12.bpo-37256.qJTrBb.rst diff --git a/Doc/library/urllib.request.rst b/Doc/library/urllib.request.rst index 3b75089666..448bc67854 100644 --- a/Doc/library/urllib.request.rst +++ b/Doc/library/urllib.request.rst @@ -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 index 0000000000..480d7c87eb --- /dev/null +++ b/Misc/NEWS.d/next/Documentation/2019-07-16-14-48-12.bpo-37256.qJTrBb.rst @@ -0,0 +1 @@ +Fix wording of arguments for :class:`Request` in :mod:`urllib.request` -- 2.50.1