[Python-checkins] r88000 - python/branches/py3k/Doc/library/urllib.parse.rst

victor.stinner python-checkins at python.org
Fri Jan 14 14:31:45 CET 2011


Author: victor.stinner
Date: Fri Jan 14 14:31:45 2011
New Revision: 88000

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

Modified:
   python/branches/py3k/Doc/library/urllib.parse.rst

Modified: python/branches/py3k/Doc/library/urllib.parse.rst
==============================================================================
--- python/branches/py3k/Doc/library/urllib.parse.rst	(original)
+++ python/branches/py3k/Doc/library/urllib.parse.rst	Fri Jan 14 14:31:45 2011
@@ -140,6 +140,9 @@
    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 @@
    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)
 


More information about the Python-checkins mailing list