diff options
author | Brett Cannon <bcannon@gmail.com> | 2003-05-13 02:50:36 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2003-05-13 02:50:36 (GMT) |
commit | 1213bdd16d864538e75471aed08422e372dd0a18 (patch) | |
tree | d7ed5d15b69cbb8fe25545bf82d58a10b993cf94 /Doc/lib/libcgi.tex | |
parent | 62aa994633dbf87a4e7e03c9ec13ce9fc7dfca0f (diff) | |
download | cpython-1213bdd16d864538e75471aed08422e372dd0a18.zip cpython-1213bdd16d864538e75471aed08422e372dd0a18.tar.gz cpython-1213bdd16d864538e75471aed08422e372dd0a18.tar.bz2 |
Fix and add reference to urllib.urlencode for parse_qsl? functions.
Diffstat (limited to 'Doc/lib/libcgi.tex')
-rw-r--r-- | Doc/lib/libcgi.tex | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Doc/lib/libcgi.tex b/Doc/lib/libcgi.tex index 38798d4..67e93b4 100644 --- a/Doc/lib/libcgi.tex +++ b/Doc/lib/libcgi.tex @@ -331,6 +331,10 @@ The optional argument \var{strict_parsing} is a flag indicating what to do with parsing errors. If false (the default), errors are silently ignored. If true, errors raise a ValueError exception. + +Use the \function{\refmodule{urllib}.urlencode()} function to convert +such dictionaries into query strings. + \end{funcdesc} \begin{funcdesc}{parse_qsl}{qs\optional{, keep_blank_values\optional{, @@ -352,7 +356,7 @@ to do with parsing errors. If false (the default), errors are silently ignored. If true, errors raise a ValueError exception. -Use the \function{\refmodule{cgi}.urlencode()} function to convert +Use the \function{\refmodule{urllib}.urlencode()} function to convert such lists of pairs into query strings. \end{funcdesc} |