]> granicus.if.org Git - python/commitdiff
bpo-29651 - Cover edge case of square brackets in urllib docs (#1128) (#1596)
authorSenthil Kumaran <skumaran@gatech.edu>
Tue, 16 May 2017 05:41:07 +0000 (22:41 -0700)
committerGitHub <noreply@github.com>
Tue, 16 May 2017 05:41:07 +0000 (22:41 -0700)
(cherry picked from commit f6e863d868a621594df2a8abe072b5d4766e7137)

Doc/library/urllib.parse.rst

index 676321b46a2232efc4a3e9e5ec7bee36926d4319..1cc69e62e63318e1ffb03564573f5049dee955d6 100644 (file)
@@ -118,6 +118,9 @@ or on combining URL components into a URL string.
    an invalid port is specified in the URL.  See section
    :ref:`urlparse-result-object` for more information on the result object.
 
+   Unmatched square brackets in the :attr:`netloc` attribute will raise a
+   :exc:`ValueError`.
+
    .. versionchanged:: 3.2
       Added IPv6 URL parsing capabilities.
 
@@ -236,6 +239,9 @@ or on combining URL components into a URL string.
    an invalid port is specified in the URL.  See section
    :ref:`urlparse-result-object` for more information on the result object.
 
+   Unmatched square brackets in the :attr:`netloc` attribute will raise a
+   :exc:`ValueError`.
+
    .. versionchanged:: 3.6
       Out-of-range port numbers now raise :exc:`ValueError`, instead of
       returning :const:`None`.