diff options
author | Senthil Kumaran <orsenthil@gmail.com> | 2010-04-22 12:19:46 (GMT) |
---|---|---|
committer | Senthil Kumaran <orsenthil@gmail.com> | 2010-04-22 12:19:46 (GMT) |
commit | 7a1e09f60cf1d64f204eecf05c6581185e55fe8a (patch) | |
tree | 05e02a7348195043c52713edec488cd7602cec1e /Doc | |
parent | dcb2403022520028a633143602359a30080ed257 (diff) | |
download | cpython-7a1e09f60cf1d64f204eecf05c6581185e55fe8a.zip cpython-7a1e09f60cf1d64f204eecf05c6581185e55fe8a.tar.gz cpython-7a1e09f60cf1d64f204eecf05c6581185e55fe8a.tar.bz2 |
Merged revisions 80362 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r80362 | senthil.kumaran | 2010-04-22 17:40:13 +0530 (Thu, 22 Apr 2010) | 4 lines
Changed tests to only urlparse one, which was enough, addressed Ezio's comment
on Invalid url check statement and versionchanged string in docs.
........
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/urllib.parse.rst | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Doc/library/urllib.parse.rst b/Doc/library/urllib.parse.rst index ac05503..4900005 100644 --- a/Doc/library/urllib.parse.rst +++ b/Doc/library/urllib.parse.rst @@ -88,6 +88,9 @@ The :mod:`urllib.parse` module defines the following functions: See section :ref:`urlparse-result-object` for more information on the result object. + .. versionchanged:: 3.2 + Added IPv6 URL parsing capabilities. + .. function:: parse_qs(qs, keep_blank_values=False, strict_parsing=False) @@ -329,7 +332,7 @@ The :mod:`urllib.parse` module defines the following functions: :rfc:`3986` - Uniform Resource Identifiers This is the current standard (STD66). Any changes to urlparse module should conform to this. Certain deviations could be observed, which are - mostly due backward compatiblity purposes and for certain to de-facto + mostly due backward compatiblity purposes and for certain de-facto parsing requirements as commonly observed in major browsers. :rfc:`2732` - Format for Literal IPv6 Addresses in URL's. |