diff options
author | Guido van Rossum <guido@python.org> | 1995-04-10 11:34:00 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1995-04-10 11:34:00 (GMT) |
commit | 96628a90c47f15f357b31d665a4222d175e17b27 (patch) | |
tree | 74d6ef8384b587b2526d7c24adbf2f7d4e77bc93 /Doc/liburlparse.tex | |
parent | eae3f73b1c86fecfcb3d2b5599a5efd5ddf87306 (diff) | |
download | cpython-96628a90c47f15f357b31d665a4222d175e17b27.zip cpython-96628a90c47f15f357b31d665a4222d175e17b27.tar.gz cpython-96628a90c47f15f357b31d665a4222d175e17b27.tar.bz2 |
typos, layout and other small things
Diffstat (limited to 'Doc/liburlparse.tex')
-rw-r--r-- | Doc/liburlparse.tex | 24 |
1 files changed, 19 insertions, 5 deletions
diff --git a/Doc/liburlparse.tex b/Doc/liburlparse.tex index c35d032..36ca949 100644 --- a/Doc/liburlparse.tex +++ b/Doc/liburlparse.tex @@ -33,9 +33,16 @@ except for a leading slash in the \var{path} component, which is retained if present. Example: -\code{urlparse('http://www.cwi.nl:80/\%7eguido/Python.html')} + +\begin{verbatim} +urlparse('http://www.cwi.nl:80/%7Eguido/Python.html') +\end{verbatim} + yields the tuple -\code{('http', 'www.cwi.nl:80', '/\%7eguido/Python.html', '', '', '')}. + +\begin{verbatim} +('http', 'www.cwi.nl:80', '/%7Eguido/Python.html', '', '', '') +\end{verbatim} If the \var{default_scheme} argument is specified, it gives the default addressing scheme, to be used only if the URL string does not @@ -61,9 +68,16 @@ the network location and (part of) the path, to provide missing components in the relative URL. Example: -\code{urljoin('http://www.cwi.nl/\%7eguido/Python.html',} -\code{'FAQ.html')} yields the string -\code{'http://www.cwi.nl/\%7eguido/FAQ.html'}. + +\begin{verbatim} +urljoin('http://www.cwi.nl/%7Eguido/Python.html', 'FAQ.html') +\end{verbatim} + +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}. |