[Python-checkins] r76096 - in python/branches/release26-maint: Doc/library/urlparse.rst

georg.brandl python-checkins at python.org
Tue Nov 3 19:35:03 CET 2009


Author: georg.brandl
Date: Tue Nov  3 19:35:03 2009
New Revision: 76096

Log:
Merged revisions 76095 via svnmerge from 
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r76095 | georg.brandl | 2009-11-03 18:34:27 +0000 (Di, 03 Nov 2009) | 1 line
  
  #7256: add versionadded tags for functions copied from cgi.
........


Modified:
   python/branches/release26-maint/   (props changed)
   python/branches/release26-maint/Doc/library/urlparse.rst

Modified: python/branches/release26-maint/Doc/library/urlparse.rst
==============================================================================
--- python/branches/release26-maint/Doc/library/urlparse.rst	(original)
+++ python/branches/release26-maint/Doc/library/urlparse.rst	Tue Nov  3 19:35:03 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