diff options
author | Fred Drake <fdrake@acm.org> | 1998-03-17 06:33:25 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1998-03-17 06:33:25 (GMT) |
commit | cce1090d49ba91cdc06c60d8a2af04d057abe7dc (patch) | |
tree | 8b866b9986508cfb7cec89ab4fb5e1c269756b8f /Doc/lib/liburllib.tex | |
parent | c9a4438c16c66af5b196adf172fd3416ac4ec9d3 (diff) | |
download | cpython-cce1090d49ba91cdc06c60d8a2af04d057abe7dc.zip cpython-cce1090d49ba91cdc06c60d8a2af04d057abe7dc.tar.gz cpython-cce1090d49ba91cdc06c60d8a2af04d057abe7dc.tar.bz2 |
Change "\," to just "," in function signatures. This is easier to maintain,
works better with LaTeX2HTML, and allows some simplification of the python.sty
macros.
Diffstat (limited to 'Doc/lib/liburllib.tex')
-rw-r--r-- | Doc/lib/liburllib.tex | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/lib/liburllib.tex b/Doc/lib/liburllib.tex index 01fc875..1732d85 100644 --- a/Doc/lib/liburllib.tex +++ b/Doc/lib/liburllib.tex @@ -55,7 +55,7 @@ Clear the cache that may have been built up by previous calls to \function{urlretrieve()}. \end{funcdesc} -\begin{funcdesc}{quote}{string\optional{\, addsafe}} +\begin{funcdesc}{quote}{string\optional{, addsafe}} Replace special characters in \var{string} using the \samp{\%xx} escape. Letters, digits, and the characters \character{_,.-} are never quoted. The optional \var{addsafe} parameter specifies additional characters @@ -64,7 +64,7 @@ that should not be quoted --- its default value is \code{'/'}. Example: \code{quote('/\~connolly/')} yields \code{'/\%7econnolly/'}. \end{funcdesc} -\begin{funcdesc}{quote_plus}{string\optional{\, addsafe}} +\begin{funcdesc}{quote_plus}{string\optional{, addsafe}} Like \function{quote()}, but also replaces spaces by plus signs, as required for quoting HTML form values. \end{funcdesc} |