diff options
author | Georg Brandl <georg@python.org> | 2006-01-20 21:17:01 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2006-01-20 21:17:01 (GMT) |
commit | 1de37002bf580d23dbef80087fa36b9c07f9e3c9 (patch) | |
tree | aeaa459498eb5c17f45250126393e6d700a04f62 | |
parent | 23929f2828078ee8fb115968f732d26bb9e4c1e3 (diff) | |
download | cpython-1de37002bf580d23dbef80087fa36b9c07f9e3c9.zip cpython-1de37002bf580d23dbef80087fa36b9c07f9e3c9.tar.gz cpython-1de37002bf580d23dbef80087fa36b9c07f9e3c9.tar.bz2 |
Document supported schemes.
-rw-r--r-- | Doc/lib/liburlparse.tex | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/Doc/lib/liburlparse.tex b/Doc/lib/liburlparse.tex index 4f366d4..a060cd6 100644 --- a/Doc/lib/liburlparse.tex +++ b/Doc/lib/liburlparse.tex @@ -19,9 +19,14 @@ string, and to convert a ``relative URL'' to an absolute URL given a The module has been designed to match the Internet RFC on Relative Uniform Resource Locators (and discovered a bug in an earlier -draft!). - -It defines the following functions: +draft!). It supports the following URL schemes: +\code{file}, \code{ftp}, \code{gopher}, \code{hdl}, \code{http}, +\code{https}, \code{imap}, \code{mailto}, \code{mms}, \code{news}, +\code{nntp}, \code{prospero}, \code{rsync}, \code{rtsp}, \code{rtspu}, +\code{sftp}, \code{shttp}, \code{sip}, \code{snews}, \code{svn}, +\code{svn+ssh}, \code{telnet}, \code{wais}. + +The \module{urlparse} module defines the following functions: \begin{funcdesc}{urlparse}{urlstring\optional{, default_scheme\optional{, allow_fragments}}} Parse a URL into 6 components, returning a 6-tuple: (addressing |