summaryrefslogtreecommitdiffstats
path: root/Doc/library/urllib.parse.rst
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2011-01-14 13:31:45 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2011-01-14 13:31:45 (GMT)
commitc58be2ddc00dc02f601733345942c04f77775eec (patch)
treece959543215946092ef66362fccb73f313a0b43f /Doc/library/urllib.parse.rst
parentf1c7ca93c1f8b72644fd52878e2fd5cbf0a45ea7 (diff)
downloadcpython-c58be2ddc00dc02f601733345942c04f77775eec.zip
cpython-c58be2ddc00dc02f601733345942c04f77775eec.tar.gz
cpython-c58be2ddc00dc02f601733345942c04f77775eec.tar.bz2
urllib doc: add versionchanged sections for parse_qs() and parse_qsl()
Diffstat (limited to 'Doc/library/urllib.parse.rst')
-rw-r--r--Doc/library/urllib.parse.rst6
1 files changed, 6 insertions, 0 deletions
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)