diff options
author | Fred Drake <fdrake@acm.org> | 2000-08-25 17:29:35 +0000 |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2000-08-25 17:29:35 +0000 |
commit | a387583dcabe83284d989a4749856e6b8b34af4d (patch) | |
tree | 6b1f82efa411f9bf2d19118c9c51907796c004c4 /Doc/lib/liburlparse.tex | |
parent | c45bb0e9efc2e30d683ac56ae071937653b64295 (diff) | |
download | cpython-a387583dcabe83284d989a4749856e6b8b34af4d.tar.gz |
Add reference to RFC 2396 in "See also" section.
Minor cleanups.
Diffstat (limited to 'Doc/lib/liburlparse.tex')
-rw-r--r-- | Doc/lib/liburlparse.tex | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/Doc/lib/liburlparse.tex b/Doc/lib/liburlparse.tex index 6173fcc93b..ed649d1004 100644 --- a/Doc/lib/liburlparse.tex +++ b/Doc/lib/liburlparse.tex @@ -1,5 +1,5 @@ \section{\module{urlparse} --- - Parse URLs into components.} + Parse URLs into components} \declaremodule{standard}{urlparse} \modulesynopsis{Parse URLs into components.} @@ -11,10 +11,11 @@ \indexii{relative}{URL} -This module defines a standard interface to break URL strings up in -components (addressing scheme, network location, path etc.), to combine -the components back into a URL string, and to convert a ``relative -URL'' to an absolute URL given a ``base URL.'' +This module defines a standard interface to break Uniform Resource +Locator (URL) strings up in components (addressing scheme, network +location, path etc.), to combine the components back into a URL +string, and to convert a ``relative URL'' to an absolute URL given a +``base URL.'' The module has been designed to match the Internet RFC on Relative Uniform Resource Locators (and discovered a bug in an earlier @@ -80,7 +81,7 @@ yields the string \begin{verbatim} 'http://www.cwi.nl/%7Eguido/FAQ.html' \end{verbatim} -% + The \var{allow_fragments} argument has the same meaning as for \code{urlparse()}. \end{funcdesc} @@ -95,4 +96,8 @@ The \var{allow_fragments} argument has the same meaning as for absolute and a relative URL, including a fair normal of ``Abnormal Examples'' which govern the treatment of border cases.} + \seerfc{2396}{Uniform Resource Identifiers (URI): Generic Syntax}{ + Document describing the generic syntactic requirements for + both Uniform Resource Names (URNs) and Uniform Resource + Locators (URLs).} \end{seealso} |