diff options
author | Fred Drake <fdrake@acm.org> | 1998-08-06 21:23:17 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1998-08-06 21:23:17 (GMT) |
commit | 72d157e998a4e9b18e90e670bcb18520cfc894ab (patch) | |
tree | 01a140f845892695c8267de15d5ebfe7d7f23ff5 /Doc/lib/liburlparse.tex | |
parent | 9940bd717cbee598ac12d805b05feb91f9f07157 (diff) | |
download | cpython-72d157e998a4e9b18e90e670bcb18520cfc894ab.zip cpython-72d157e998a4e9b18e90e670bcb18520cfc894ab.tar.gz cpython-72d157e998a4e9b18e90e670bcb18520cfc894ab.tar.bz2 |
Shorten the module synopsis.
Diffstat (limited to 'Doc/lib/liburlparse.tex')
-rw-r--r-- | Doc/lib/liburlparse.tex | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Doc/lib/liburlparse.tex b/Doc/lib/liburlparse.tex index 4c3af7d..9a2b4f5 100644 --- a/Doc/lib/liburlparse.tex +++ b/Doc/lib/liburlparse.tex @@ -1,8 +1,7 @@ \section{Standard Module \module{urlparse}} \declaremodule{standard}{urlparse} -\modulesynopsis{Parse a URL string into a tuple (addressing scheme identifier, network -location, path, parameters, query string, fragment identifier).} +\modulesynopsis{Parse URLs into components.} \index{WWW} \index{World-Wide Web} @@ -14,7 +13,7 @@ location, path, parameters, query string, fragment identifier).} This module defines a standard interface to break URL strings up in components (addessing 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''. +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 |