diff options
author | Georg Brandl <georg@python.org> | 2009-11-03 18:34:27 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-11-03 18:34:27 (GMT) |
commit | a6714b2887aa50a6eeeb280c6759896ebaba3211 (patch) | |
tree | 8665756595104170675cc94c44298edbd24ff80a | |
parent | b3c169b08f6bb56edc2a14ecfd2b6d36c1fec13f (diff) | |
download | cpython-a6714b2887aa50a6eeeb280c6759896ebaba3211.zip cpython-a6714b2887aa50a6eeeb280c6759896ebaba3211.tar.gz cpython-a6714b2887aa50a6eeeb280c6759896ebaba3211.tar.bz2 |
#7256: add versionadded tags for functions copied from cgi.
-rw-r--r-- | Doc/library/urlparse.rst | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Doc/library/urlparse.rst b/Doc/library/urlparse.rst index 40f889b..e238ff0 100644 --- a/Doc/library/urlparse.rst +++ b/Doc/library/urlparse.rst @@ -121,6 +121,9 @@ The :mod:`urlparse` module defines the following functions: 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 @@ The :mod:`urlparse` module defines the following functions: 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 |