diff options
author | Guido van Rossum <guido@python.org> | 1995-02-28 17:14:32 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1995-02-28 17:14:32 (GMT) |
commit | 8675115e5f55e69fdb30ebba95e7a6a5216e133c (patch) | |
tree | d09dfc7242177a6061808ab9866d418efbeea0ed /Doc/liburllib.tex | |
parent | e4be9be99a7fb0f30e57803fda355321f64b0b05 (diff) | |
download | cpython-8675115e5f55e69fdb30ebba95e7a6a5216e133c.zip cpython-8675115e5f55e69fdb30ebba95e7a6a5216e133c.tar.gz cpython-8675115e5f55e69fdb30ebba95e7a6a5216e133c.tar.bz2 |
a few typographical changes (e.g. -- => ---) and lots of new stuff in the WWW chapter
Diffstat (limited to 'Doc/liburllib.tex')
-rw-r--r-- | Doc/liburllib.tex | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Doc/liburllib.tex b/Doc/liburllib.tex index 689a5c9..a6000a7 100644 --- a/Doc/liburllib.tex +++ b/Doc/liburllib.tex @@ -4,6 +4,8 @@ \indexii{World-Wide}{Web} \index{URL} +\renewcommand{\indexsubitem}{(in module urllib)} + This module provides a high-level interface for fetching data across the World-Wide Web. In particular, the \code{urlopen} function is similar to the built-in function \code{open}, but accepts URLs @@ -55,13 +57,13 @@ Letters, digits, and the characters ``\code{_,.-}'' are never quoted. The optional \var{addsafe} parameter specifies additional characters that should not be quoted --- its default value is \code{'/'}. -Example: \code{quote('/~conolly/')} yields \code{'/\%7econnolly/'}. +Example: \code{quote('/\~conolly/')} yields \code{'/\%7econnolly/'}. \end{funcdesc} \begin{funcdesc}{unquote}{string} Remove \code{\%xx} escapes by their single-character equivalent. -Example: \code{unquote('/\%7Econnolly/')} yields \code{'/~connolly/'}. +Example: \code{unquote('/\%7Econnolly/')} yields \code{'/\~connolly/'}. \end{funcdesc} Restrictions: |