From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Mon, 6 May 2024 17:01:50 +0000 (+0200) Subject: [3.12] GH-115577 Clarify netloc term usage in urllib.parse docs (GH-117632) (GH-118656) X-Git-Tag: v3.12.4~134 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=11888a8694b4a2a20f0b27d046085ff9e6fa9171;p=thirdparty%2FPython%2Fcpython.git [3.12] GH-115577 Clarify netloc term usage in urllib.parse docs (GH-117632) (GH-118656) (cherry picked from commit 3ed3bc379a0c4ce7a107dd4bc276554fbb477998) Co-authored-by: Kerim Kabirov --- diff --git a/Doc/library/urllib.parse.rst b/Doc/library/urllib.parse.rst index 3c898c3e8263..59fb14960ba9 100644 --- a/Doc/library/urllib.parse.rst +++ b/Doc/library/urllib.parse.rst @@ -31,6 +31,11 @@ The :mod:`urllib.parse` module defines functions that fall into two broad categories: URL parsing and URL quoting. These are covered in detail in the following sections. +This module's functions use the deprecated term ``netloc`` (or ``net_loc``), +which was introduced in :rfc:`1808`. However, this term has been obsoleted by +:rfc:`3986`, which introduced the term ``authority`` as its replacement. +The use of ``netloc`` is continued for backward compatibility. + URL Parsing -----------