From a6714b2887aa50a6eeeb280c6759896ebaba3211 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Tue, 3 Nov 2009 18:34:27 +0000 Subject: [PATCH] #7256: add versionadded tags for functions copied from cgi. --- Doc/library/urlparse.rst | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Doc/library/urlparse.rst b/Doc/library/urlparse.rst index 40f889b47d..e238ff0ae9 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 -- 2.40.0