From c58be2ddc00dc02f601733345942c04f77775eec Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Fri, 14 Jan 2011 13:31:45 +0000 Subject: urllib doc: add versionchanged sections for parse_qs() and parse_qsl() --- Doc/library/urllib.parse.rst | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Doc/library/urllib.parse.rst b/Doc/library/urllib.parse.rst index 01ac444..22680d0 100644 --- a/Doc/library/urllib.parse.rst +++ b/Doc/library/urllib.parse.rst @@ -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) -- cgit v0.12