[Python-checkins] r42124 - python/branches/release24-maint/Doc/lib/liburlparse.tex

georg.brandl python-checkins at python.org
Fri Jan 20 22:16:56 CET 2006


Author: georg.brandl
Date: Fri Jan 20 22:16:54 2006
New Revision: 42124

Modified:
   python/branches/release24-maint/Doc/lib/liburlparse.tex
Log:
Document supported schemes.



Modified: python/branches/release24-maint/Doc/lib/liburlparse.tex
==============================================================================
--- python/branches/release24-maint/Doc/lib/liburlparse.tex	(original)
+++ python/branches/release24-maint/Doc/lib/liburlparse.tex	Fri Jan 20 22:16:54 2006
@@ -19,9 +19,14 @@
 
 The module has been designed to match the Internet RFC on Relative
 Uniform Resource Locators (and discovered a bug in an earlier
-draft!).
+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{shttp}, \code{sip}, \code{snews}, \code{svn}, \code{svn+ssh}, 
+\code{telnet}, \code{wais}.
 
-It defines the following functions:
+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


More information about the Python-checkins mailing list