diff options
author | Senthil Kumaran <senthil@uthcode.com> | 2012-06-29 04:07:32 (GMT) |
---|---|---|
committer | Senthil Kumaran <senthil@uthcode.com> | 2012-06-29 04:07:32 (GMT) |
commit | 9d5d507322e828c8285f68d90bd49c9ca8833a89 (patch) | |
tree | 7175415ce887be13b8d721c5270c62e44f2177fd | |
parent | d9a5137742f066492c831c9b6f3eeb59c2e479b7 (diff) | |
download | cpython-9d5d507322e828c8285f68d90bd49c9ca8833a89.zip cpython-9d5d507322e828c8285f68d90bd49c9ca8833a89.tar.gz cpython-9d5d507322e828c8285f68d90bd49c9ca8833a89.tar.bz2 |
urlparse docs clean up
-rw-r--r-- | Doc/library/urlparse.rst | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Doc/library/urlparse.rst b/Doc/library/urlparse.rst index c8b7145..6354cce 100644 --- a/Doc/library/urlparse.rst +++ b/Doc/library/urlparse.rst @@ -27,11 +27,11 @@ 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 draft!). It supports the -following URL schemes: ``file``, ``ftp``, ``gopher``, ``hdl``, ``http``, -``https``, ``imap``, ``mailto``, ``mms``, ``news``, ``nntp``, ``prospero``, -``rsync``, ``rtsp``, ``rtspu``, ``sftp``, ``shttp``, ``sip``, ``sips``, -``snews``, ``svn``, ``svn+ssh``, ``telnet``, ``wais``. +Resource Locators. It supports the following URL schemes: ``file``, ``ftp``, +``gopher``, ``hdl``, ``http``, ``https``, ``imap``, ``mailto``, ``mms``, +``news``, ``nntp``, ``prospero``, ``rsync``, ``rtsp``, ``rtspu``, ``sftp``, +``shttp``, ``sip``, ``sips``, ``snews``, ``svn``, ``svn+ssh``, ``telnet``, +``wais``. .. versionadded:: 2.5 Support for the ``sftp`` and ``sips`` schemes. |