urllib doc: add versionchanged sections for parse_qs() and parse_qsl()

This commit is contained in:
Victor Stinner 2011-01-14 13:31:45 +00:00
parent f1c7ca93c1
commit c58be2ddc0
1 changed files with 6 additions and 0 deletions

View File

@ -140,6 +140,9 @@ or on combining URL components into a URL string.
Use the :func:`urllib.parse.urlencode` function to convert such
dictionaries into query strings.
.. versionchanged:: 3.2
Add *encoding* and *errors* parameters.
.. function:: parse_qsl(qs, keep_blank_values=False, strict_parsing=False, encoding='utf-8', errors='replace')
@ -164,6 +167,9 @@ or on combining URL components into a URL string.
Use the :func:`urllib.parse.urlencode` function to convert such lists of pairs into
query strings.
.. versionchanged:: 3.2
Add *encoding* and *errors* parameters.
.. function:: urlunparse(parts)