diff options
author | Martin Panter <vadmium> | 2015-09-20 00:28:50 (GMT) |
---|---|---|
committer | Martin Panter <vadmium> | 2015-09-20 00:28:50 (GMT) |
commit | cebfdac32c0c20c196da87e7ce2dc1894d6d1b04 (patch) | |
tree | e299d40f7b53678755efe1e27d077ffaeb6cdd75 /Doc/library/cgi.rst | |
parent | d86a6ef41c7ef746ca871c2c1a74999327d73a7d (diff) | |
download | cpython-cebfdac32c0c20c196da87e7ce2dc1894d6d1b04.zip cpython-cebfdac32c0c20c196da87e7ce2dc1894d6d1b04.tar.gz cpython-cebfdac32c0c20c196da87e7ce2dc1894d6d1b04.tar.bz2 |
Issue #25176: Correct link for cgi.parse_qsl; patch from Ville Skyttä
Diffstat (limited to 'Doc/library/cgi.rst')
-rw-r--r-- | Doc/library/cgi.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/cgi.rst b/Doc/library/cgi.rst index fa13145..74abed5 100644 --- a/Doc/library/cgi.rst +++ b/Doc/library/cgi.rst @@ -285,7 +285,7 @@ algorithms implemented in this module in other circumstances. .. function:: parse_qsl(qs, keep_blank_values=False, strict_parsing=False) - This function is deprecated in this module. Use :func:`urllib.parse.parse_qs` + This function is deprecated in this module. Use :func:`urllib.parse.parse_qsl` instead. It is maintained here only for backward compatibility. .. function:: parse_multipart(fp, pdict) |