
python-checkins at python
Nov 3, 2009, 12:20 PM
Post #1 of 1
(154 views)
Permalink
|
|
r76096 - in python/branches/release26-maint: Doc/library/urlparse.rst
|
|
Author: georg.brandl Date: Tue Nov 3 19:35:03 2009 New Revision: 76096 Log: Merged revisions 76095 via svnmerge from svn+ssh://pythondev [at] svn/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 _______________________________________________ Python-checkins mailing list Python-checkins [at] python http://mail.python.org/mailman/listinfo/python-checkins
|