From bf774a3a8726565e25c8c017d00e18d93427b2da Mon Sep 17 00:00:00 2001 From: Ido Michael Date: Sun, 28 Jun 2020 10:23:17 -0400 Subject: [PATCH] Wrapped text to 80 chars --- Doc/library/urllib.parse.rst | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/Doc/library/urllib.parse.rst b/Doc/library/urllib.parse.rst index 6bf1be8b77d..0e3a116d8bf 100644 --- a/Doc/library/urllib.parse.rst +++ b/Doc/library/urllib.parse.rst @@ -262,8 +262,9 @@ or on combining URL components into a URL string. The delimiters as shown above are not part of the result, except for a leading slash in the path component, which is retained if present. - Additionally, the netloc property is broken down into these additional attributes added to - the returned object: username, password, hostname, and port. + Additionally, the netloc property is broken down into these additional + attributes added to the returned object: username, password, hostname, + and port. % escapes are not decoded. @@ -277,12 +278,12 @@ or on combining URL components into a URL string. or query component, and :attr:`fragment` is set to the empty string in the return value. - This is similar to :func:`urlparse`, but does not split the params from the URL. - This should generally be used instead of :func:`urlparse` if the more recent URL - syntax allowing parameters to be applied to each segment of the *path* portion - of the URL (see :rfc:`2396`) is wanted. A separate function is needed to - separate the path segments and parameters. This function returns a 5-item - :term:`named tuple`:: + This is similar to :func:`urlparse`, but does not split the params from the + URL. This should generally be used instead of :func:`urlparse` if the more + recent URL syntax allowing parameters to be applied to each segment of the + *path* portion of the URL (see :rfc:`2396`) is wanted. A separate function + is needed to separate the path segments and parameters. + This function returns a 5-item :term:`named tuple`:: (addressing scheme, network location, path, query, fragment identifier).