diff options
| author | Guido van Rossum <guido@python.org> | 1995-02-28 17:14:32 +0000 |
|---|---|---|
| committer | Guido van Rossum <guido@python.org> | 1995-02-28 17:14:32 +0000 |
| commit | 8675115e5f55e69fdb30ebba95e7a6a5216e133c (patch) | |
| tree | d09dfc7242177a6061808ab9866d418efbeea0ed /Doc/lib/liburllib.tex | |
| parent | e4be9be99a7fb0f30e57803fda355321f64b0b05 (diff) | |
| download | cpython-git-8675115e5f55e69fdb30ebba95e7a6a5216e133c.tar.gz | |
a few typographical changes (e.g. -- => ---) and lots of new stuff in the WWW chapter
Diffstat (limited to 'Doc/lib/liburllib.tex')
| -rw-r--r-- | Doc/lib/liburllib.tex | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Doc/lib/liburllib.tex b/Doc/lib/liburllib.tex index 689a5c9e04..a6000a7b53 100644 --- a/Doc/lib/liburllib.tex +++ b/Doc/lib/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: |
