summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorKerim Kabirov <the.privat33r+gh@pm.me>2024-05-06 16:55:22 (GMT)
committerGitHub <noreply@github.com>2024-05-06 16:55:22 (GMT)
commit3ed3bc379a0c4ce7a107dd4bc276554fbb477998 (patch)
treeb55ddd53fd576a831bbaba522ecbb0a5f27d5b71 /Doc
parent7528b84e947f727734bd802356e380673553387d (diff)
downloadcpython-3ed3bc379a0c4ce7a107dd4bc276554fbb477998.zip
cpython-3ed3bc379a0c4ce7a107dd4bc276554fbb477998.tar.gz
cpython-3ed3bc379a0c4ce7a107dd4bc276554fbb477998.tar.bz2
GH-115577 Clarify netloc term usage in urllib.parse docs (GH-117632)
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/urllib.parse.rst5
1 files changed, 5 insertions, 0 deletions
diff --git a/Doc/library/urllib.parse.rst b/Doc/library/urllib.parse.rst
index 3c898c3..59fb149 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
-----------