summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2024-06-23 12:58:06 (GMT)
committerGitHub <noreply@github.com>2024-06-23 12:58:06 (GMT)
commit97acd295418493b19d78ed1a26d76e2dc8cc63dd (patch)
treef543625344fc42a10482360dccdd1635e1e34f51
parentbf7aac3d25dc396128d56b699ca269c89975e41f (diff)
downloadcpython-97acd295418493b19d78ed1a26d76e2dc8cc63dd.zip
cpython-97acd295418493b19d78ed1a26d76e2dc8cc63dd.tar.gz
cpython-97acd295418493b19d78ed1a26d76e2dc8cc63dd.tar.bz2
[3.13] gh-120896: Fix typo in version changed note of `urllib.parse.urlparse()` (GH-120898) (#120902)
gh-120896: Fix typo in version changed note of `urllib.parse.urlparse()` (GH-120898) (cherry picked from commit b6fa8fe86a6f4d02c263682716a91285a94024fc) Co-authored-by: Nice Zombies <nineteendo19d0@gmail.com>
-rw-r--r--Doc/library/urllib.parse.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/urllib.parse.rst b/Doc/library/urllib.parse.rst
index cd402e8..27909b7 100644
--- a/Doc/library/urllib.parse.rst
+++ b/Doc/library/urllib.parse.rst
@@ -173,7 +173,7 @@ or on combining URL components into a URL string.
Added IPv6 URL parsing capabilities.
.. versionchanged:: 3.3
- The fragment is now parsed for all URL schemes (unless *allow_fragment* is
+ The fragment is now parsed for all URL schemes (unless *allow_fragments* is
false), in accordance with :rfc:`3986`. Previously, an allowlist of
schemes that support fragments existed.