
python-checkins at python
Nov 3, 2009, 12:20 PM
Post #1 of 1
(46 views)
Permalink
|
|
r76095 - python/trunk/Doc/library/urlparse.rst
|
|
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 _______________________________________________ Python-checkins mailing list Python-checkins[at]python.org http://mail.python.org/mailman/listinfo/python-checkins
|