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/libcgi.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/libcgi.tex')
-rw-r--r-- | Doc/libcgi.tex | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/libcgi.tex b/Doc/libcgi.tex index fa2b6b7..55abd10 100644 --- a/Doc/libcgi.tex +++ b/Doc/libcgi.tex @@ -191,7 +191,7 @@ Parse a query string given as a string argument (data of type \mimetype{application/x-www-form-urlencoded}). \end{funcdesc} -\begin{funcdesc}{parse_multipart}{fp\, pdict} +\begin{funcdesc}{parse_multipart}{fp, pdict} Parse input of type \mimetype{multipart/form-data} (for file uploads). Arguments are \var{fp} for the input file and \var{pdict} for the dictionary containing other parameters of @@ -236,7 +236,7 @@ Print a list of useful (used by CGI) environment variables in HTML. \end{funcdesc} -\begin{funcdesc}{escape}{s\optional{\, quote}} +\begin{funcdesc}{escape}{s\optional{, quote}} Convert the characters \character{\&}, \character{<} and \character{>} in string \var{s} to HTML-safe sequences. Use this if you need to display text that might |