[Python-checkins] r76095 - python/trunk/Doc/library/urlparse.rst

georg.brandl python-checkins at python.org
Tue Nov 3 19:34:27 CET 2009


Author: georg.brandl
Date: Tue Nov  3 19:34:27 2009
New Revision: 76095

Log:
#7256: add versionadded tags for functions copied from cgi.

Modified:
   python/trunk/Doc/library/urlparse.rst

Modified: python/trunk/Doc/library/urlparse.rst
==============================================================================
--- python/trunk/Doc/library/urlparse.rst	(original)
+++ python/trunk/Doc/library/urlparse.rst	Tue Nov  3 19:34:27 2009
@@ -121,6 +121,9 @@
    Use the :func:`urllib.urlencode` function to convert such dictionaries into
    query strings.
 
+   .. versionadded:: 2.6
+      Copied from the :mod:`cgi` module.
+
 
 .. function:: parse_qsl(qs[, keep_blank_values[, strict_parsing]])
 
@@ -141,6 +144,10 @@
    Use the :func:`urllib.urlencode` function to convert such lists of pairs into
    query strings.
 
+   .. versionadded:: 2.6
+      Copied from the :mod:`cgi` module.
+
+
 .. function:: urlunparse(parts)
 
    Construct a URL from a tuple as returned by ``urlparse()``. The *parts* argument


More information about the Python-checkins mailing list