summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2012-09-29 06:59:23 (GMT)
committerGeorg Brandl <georg@python.org>2012-09-29 06:59:23 (GMT)
commita79b8dc9172ba1cf060579ec0144c9fbbd4c3fd0 (patch)
treede064a8e9a36ad09e25f7ed1f2b1f8762624e3ef
parent3d7838593bb7b196e39f93eb6457ff9ef2ffbb5a (diff)
downloadcpython-a79b8dc9172ba1cf060579ec0144c9fbbd4c3fd0.zip
cpython-a79b8dc9172ba1cf060579ec0144c9fbbd4c3fd0.tar.gz
cpython-a79b8dc9172ba1cf060579ec0144c9fbbd4c3fd0.tar.bz2
Add a versionchanged note for #9374 changes.
-rw-r--r--Doc/library/urllib.parse.rst8
1 files changed, 6 insertions, 2 deletions
diff --git a/Doc/library/urllib.parse.rst b/Doc/library/urllib.parse.rst
index bc1da62..d56fe0e 100644
--- a/Doc/library/urllib.parse.rst
+++ b/Doc/library/urllib.parse.rst
@@ -81,8 +81,7 @@ or on combining URL components into a URL string.
this argument is the empty string.
If the *allow_fragments* argument is false, fragment identifiers are not
- allowed, even if the URL's addressing scheme normally does support them. The
- default value for this argument is :const:`True`.
+ allowed. The default value for this argument is :const:`True`.
The return value is actually an instance of a subclass of :class:`tuple`. This
class has the following additional read-only convenience attributes:
@@ -119,6 +118,11 @@ or on combining URL components into a URL string.
.. versionchanged:: 3.2
Added IPv6 URL parsing capabilities.
+ .. versionchanged:: 3.3
+ The fragment is now parsed for all URL schemes (unless *allow_fragment* is
+ false), in accordance with :rfc:`3986`. Previously, a whitelist of
+ schemes that support fragments existed.
+
.. function:: parse_qs(qs, keep_blank_values=False, strict_parsing=False, encoding='utf-8', errors='replace')